Skip to content

Commit ec79a2d

Browse files
committed
set activeRepo asn an array as it is intended
1 parent 9112782 commit ec79a2d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Placeholder for the next version (at the beginning of the line):
44
## __WORK IN PROGRESS__
55
-->
6+
## __WORK IN PROGRESS__
7+
* (foxriver76) set `activeRepo` as an array as it is intended
8+
69
## 0.7.2 (2024-03-26)
710
* (stevenengland) Add support for jsonconfig json5 files hot reload
811

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ class DevServer {
11951195
systemConfig.common.diag = 'none'; // Disable statistics reporting
11961196
systemConfig.common.licenseConfirmed = true; // Disable license confirmation
11971197
systemConfig.common.defaultLogLevel = 'debug'; // Set default log level for adapters to debug
1198-
systemConfig.common.activeRepo = 'beta'; // Set adapter repository to beta
1198+
systemConfig.common.activeRepo = ['beta']; // Set adapter repository to beta
11991199
// Set other details to dummy values that they are not empty like in a normal installation
12001200
systemConfig.common.city = 'Berlin';
12011201
systemConfig.common.country = 'Germany';

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ class DevServer {
14011401
systemConfig.common.diag = 'none'; // Disable statistics reporting
14021402
systemConfig.common.licenseConfirmed = true; // Disable license confirmation
14031403
systemConfig.common.defaultLogLevel = 'debug'; // Set default log level for adapters to debug
1404-
systemConfig.common.activeRepo = 'beta'; // Set adapter repository to beta
1404+
systemConfig.common.activeRepo = ['beta']; // Set adapter repository to beta
14051405
// Set other details to dummy values that they are not empty like in a normal installation
14061406
systemConfig.common.city = 'Berlin';
14071407
systemConfig.common.country = 'Germany';

0 commit comments

Comments
 (0)