changed error page, MASSIVE new sound extension added with working YouTube duration, preparation and streaming API steps, wsgi random comment removal

This commit is contained in:
Xevion
2019-12-21 14:12:17 -06:00
parent 8cb5e077a4
commit 7f1a6a6e25
7 changed files with 110 additions and 21 deletions

View File

@@ -24,4 +24,4 @@ def unauthorized(e):
@app.errorhandler(404)
def page_not_found(e):
# note that we set the 404 status explicitly
return render_template('404.html'), 404
return render_template('error.html', code=404, message='Content not found...'), 404