aboutsummaryrefslogtreecommitdiffstats
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/apiBase.ts7
-rw-r--r--src/api/server/ServerApi.ts2
2 files changed, 2 insertions, 7 deletions
diff --git a/src/api/apiBase.ts b/src/api/apiBase.ts
index bc2cb3dd1..649895fbc 100644
--- a/src/api/apiBase.ts
+++ b/src/api/apiBase.ts
@@ -14,12 +14,7 @@ import { fixUrl } from '../helpers/url-helpers';
14 14
15// Note: This cannot be used from the internal-server since we are not running within the context of a browser window 15// Note: This cannot be used from the internal-server since we are not running within the context of a browser window
16export default function apiBase(withVersion = true) { 16export default function apiBase(withVersion = true) {
17 if ( 17 if (!(window as any).ferdium?.stores.settings?.all?.app.server) {
18 !(window as any).ferdium ||
19 !(window as any).ferdium.stores.settings ||
20 !(window as any).ferdium.stores.settings.all ||
21 !(window as any).ferdium.stores.settings.all.app.server
22 ) {
23 // Stores have not yet been loaded - return SERVER_NOT_LOADED to force a retry when stores are loaded 18 // Stores have not yet been loaded - return SERVER_NOT_LOADED to force a retry when stores are loaded
24 return SERVER_NOT_LOADED; 19 return SERVER_NOT_LOADED;
25 } 20 }
diff --git a/src/api/server/ServerApi.ts b/src/api/server/ServerApi.ts
index a3d873c65..860b7b76e 100644
--- a/src/api/server/ServerApi.ts
+++ b/src/api/server/ServerApi.ts
@@ -507,7 +507,7 @@ export default class ServerApi {
507 async _mapServiceModels(services: any[]) { 507 async _mapServiceModels(services: any[]) {
508 const recipes = services.map((s: { recipeId: string }) => s.recipeId); 508 const recipes = services.map((s: { recipeId: string }) => s.recipeId);
509 await this._bulkRecipeCheck(recipes); 509 await this._bulkRecipeCheck(recipes);
510 /* eslint-disable no-return-await */ 510
511 return Promise.all( 511 return Promise.all(
512 services.map(async (service: any) => this._prepareServiceModel(service)), 512 services.map(async (service: any) => this._prepareServiceModel(service)),
513 ); 513 );