commit a2f47caa730ca83fe00fdb0b38abe03777ae151e
parent 924c442ce2efd15e992db1015a018c9c22185e1d
Author: rbckman <rob@tarina.org>
Date: Mon, 10 Aug 2026 16:37:14 +0300
Merge branch 'master' of https://git.tarina.org/heartranked
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server.py b/server.py
@@ -1706,7 +1706,7 @@ class uploads:
#Load from settings
standalone = settings.standaloneserver
-if standalone == 'yes' or 'True' or 'y' or 'Y':
+if standalone == 'yes' or standalone == 'True' or standalone == 'y' or standalone == 'Y':
app.run()
else:
application = app.wsgifunc()