From 7de0e351f36df18258542edcaf4751b1ada78080 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 30 Oct 2025 23:44:41 +0100 Subject: [PATCH] Skip notif verif in client --- web/lib/service/android-push.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/lib/service/android-push.ts b/web/lib/service/android-push.ts index df152d04..eb5de67a 100644 --- a/web/lib/service/android-push.ts +++ b/web/lib/service/android-push.ts @@ -11,10 +11,10 @@ export default function AndroidPush() { if (!user?.id || !isAndroid) return console.log('AndroidPush', user) - PushNotifications.requestPermissions().then(result => { - if (result.receive !== 'granted') return - PushNotifications.register() - }) + // PushNotifications.requestPermissions().then(result => { + // if (result.receive !== 'granted') return + // PushNotifications.register() + // }) PushNotifications.addListener('registration', async token => { console.log('Device token:', token.value)