@osovitny/anatoly 3.21.23 → 3.21.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2306,7 +2306,8 @@ class AppsGoServiceBase extends GoServiceBase {
2306
2306
  appSettings = getAppSettingsById(1);
2307
2307
  }
2308
2308
  if (appSettings) {
2309
- let url = appSettings.baseUrl + appSettings.root;
2309
+ let baseUrl = appSettings.baseUrl || '';
2310
+ let url = baseUrl + appSettings.root;
2310
2311
  if (path && params) {
2311
2312
  url += (url.endsWith('/') ? "" : "/") + path + "?" + params;
2312
2313
  }