From 0a9fdaa75bfa0815fc6275565c364e663fafa3bc Mon Sep 17 00:00:00 2001 From: Odizinne Date: Fri, 2 Aug 2024 19:08:34 +0200 Subject: [PATCH] fixed variable for is_sunshine_stream_active --- src/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.py b/src/utils.py index 392b135..2b2126b 100644 --- a/src/utils.py +++ b/src/utils.py @@ -31,7 +31,7 @@ def is_bigpicture_running(): def is_sunshine_stream_active(): # To be used with https://github.com/Odizinne/Sunshine-Toolbox - return os.path.exists("SUNSHINE_STATUS_FILE") + return os.path.exists(SUNSHINE_STATUS_FILE) def close_discord():