krgamestudios / MERN-template

A website template using the MERN stack. It is geared towards Persistent Browser Based Games (think neopets), but is flexible enough for a number of different uses.
zlib License
68 stars 9 forks source link

Front-End news feed has issues when news-server sends empty data. #22

Closed Ratstail91 closed 2 years ago

Ratstail91 commented 2 years ago

I've reinforced the news server so that it can't accept empty data for title, author or body, however I should reinforce the front-end as well, just to be on the safe side.

Ratstail91 commented 2 years ago

I had to purge bad info from the news database by running this command:

DELETE FROM articles WHERE title = '' OR body = '' OR author = '';