From 36e2d525b7b0b0ceffe45f01178338be839a3a02 Mon Sep 17 00:00:00 2001 From: fusion44 Date: Sat, 22 Oct 2022 12:08:05 +0200 Subject: [PATCH] fix: setup endpoint not showing on RaspiBlitz --- app/setup/router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/setup/router.py b/app/setup/router.py index 569c6dc..e001e77 100644 --- a/app/setup/router.py +++ b/app/setup/router.py @@ -5,5 +5,5 @@ from app.system.models import APIPlatform router = None _PLATFORM = config("platform", default=APIPlatform.RASPIBLITZ) -if _PLATFORM != APIPlatform.RASPIBLITZ: +if _PLATFORM == APIPlatform.RASPIBLITZ: from app.setup.impl.raspiblitz.router import router