Merge pull request #1484 from RoboSats/disable-android-notifications

fix notification not raising on first run
This commit is contained in:
KoalaSat
2024-09-18 14:55:19 +00:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ const App = () => {
SystemModule.useProxy(useProxy ?? 'true');
});
loadCookie('settings_stop_notifications').then((stopNotifications) => {
SystemModule.stopNotifications(stopNotifications ?? 'true');
SystemModule.stopNotifications(stopNotifications ?? 'false');
});
loadCookie('garage_slots').then((slots) => {
NotificationsModule.monitorOrders(slots ?? '{}');