diff --git a/Client/styles.css b/Client/styles.css index a592e08..2c2f4c9 100644 --- a/Client/styles.css +++ b/Client/styles.css @@ -39,7 +39,7 @@ body { } * { - font-family: 'Work Sans','Arial',sans-serif; + font-family: 'Arial',sans-serif; } .italic { diff --git a/Server/webbyBits.py b/Server/webbyBits.py index 5586f2c..c20959c 100644 --- a/Server/webbyBits.py +++ b/Server/webbyBits.py @@ -206,7 +206,7 @@ def searchSongDB(): except sql.OperationalError as e: print(e) fileofDB.close() - return ({"error":"Invalid search, sorry!","data":None},422) + return ({"error":"Database error (Try another search?)","data":None},500) @app.route("/songadd", methods=["POST"]) diff --git a/readme.md b/readme.md index 0bf9c42..4c82c73 100644 --- a/readme.md +++ b/readme.md @@ -20,6 +20,7 @@ The server side consists of 3 files: sound/ databaseGenerator.py webbyBits.py +.env ``` 1. Place mp3 files in the `sound/` folder