diff --git a/app/src/plugin/platformUtils.ts b/app/src/plugin/platformUtils.ts index a6c1a4791..d18f40886 100644 --- a/app/src/plugin/platformUtils.ts +++ b/app/src/plugin/platformUtils.ts @@ -18,8 +18,8 @@ export const getLocalStorage = compatibility.getLocalStorage; export const setStorageVal = compatibility.setStorageVal; export const sendMobileAppNotification = (channel: string, title: string, body: string, delayInSeconds: number): Promise => { - /// #if BROWSER return new Promise((resolve) => { + /// #if BROWSER if (window.JSAndroid && window.JSAndroid.sendNotification) { const id = window.JSAndroid.sendNotification(channel, title, body, delayInSeconds); resolve(id); @@ -45,8 +45,10 @@ export const sendMobileAppNotification = (channel: string, title: string, body: } else { resolve(-1); } + /// #else + resolve(-1); + /// #endif }); - /// #endif }; export const cancelMobileAppNotification = (id: number) => {