@app.errorhandler(500)
    def five_oh_oh(error):
        if not cfg.cfg.config.features.disable_frontend:
            return render_template("error/500.html"), 500
        else: