From 87bea9ac2c6b9f948d763743d237ead4472cf292 Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 17 Jan 2024 22:55:33 +0100 Subject: [PATCH] Enable prod instead of debug --- lib/utils/config.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/config.dart b/lib/utils/config.dart index 28afe61..ca484a0 100644 --- a/lib/utils/config.dart +++ b/lib/utils/config.dart @@ -1,7 +1,7 @@ const prodURL = 'chess.sw-gross.de:9999'; const debugURL = 'localhost:8080'; -const dbgUrl = true; +const dbgUrl = false; String getHostURL() { var prot = 'https';