diff --git a/spaceapi/views.py b/spaceapi/views.py --- a/spaceapi/views.py +++ b/spaceapi/views.py @@ -19,7 +19,7 @@ root_views = Blueprint("root", __name__) def index(): if request_wants_json(): return jsonify(ActiveStatusv14()) - return render_template("index.html", status=ActiveStatus()) + return render_template("index.html", status=ActiveStatusv14()) @root_views.route("/status.json")