aboutsummaryrefslogtreecommitdiffhomepage
path: root/WpfTest
diff options
context:
space:
mode:
authorwinter2024-12-09 21:15:02 +0000
committerwinter2024-12-09 21:15:02 +0000
commit50edbd3907c26a2d4d616421de9bb51a4d083c1b (patch)
tree0c422392d3eb10fd50ea7736281e0bda8c198cf7 /WpfTest
parent1ab1c4d9c6a28e9929052bd00f15866eb1a5a200 (diff)
move https in config.ini to debug section
Diffstat (limited to 'WpfTest')
-rw-r--r--WpfTest/GlobalConfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/WpfTest/GlobalConfig.php b/WpfTest/GlobalConfig.php
index b5bb9df..4601257 100644
--- a/WpfTest/GlobalConfig.php
+++ b/WpfTest/GlobalConfig.php
@@ -17,7 +17,7 @@ class GlobalConfig extends Singleton {
}
public function isHttps(): bool {
- return $this->confData['instance']['https'] ?? true;
+ return $this->confData['debug']['https'] ?? true;
}
public function getBasePath(): string {