From 24283992066b8cbafed815bf6be253a93ac06a30 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Mon, 12 Jul 2021 11:50:19 -0400 Subject: [PATCH] Added missing authentication on system/status API endpoint. #1467 --- bazarr/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bazarr/api.py b/bazarr/api.py index 95a9b8e03..aea8198aa 100644 --- a/bazarr/api.py +++ b/bazarr/api.py @@ -592,6 +592,7 @@ class SystemLogs(Resource): class SystemStatus(Resource): + @authenticate def get(self): system_status = {} system_status.update({'bazarr_version': os.environ["BAZARR_VERSION"]})