Selaa lähdekoodia

Repeat config not playing sound after first trigger in android [fixes #1432]

Sebastián Katzer 8 vuotta sitten
vanhempi
commit
71eecf724d
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/android/notification/Builder.java

+ 1 - 1
src/android/notification/Builder.java

@@ -125,7 +125,7 @@ public final class Builder {
         builder = new NotificationCompat.Builder(context, Manager.CHANNEL_ID)
                 .setDefaults(options.getDefaults())
                 .setExtras(extras)
-                .setOnlyAlertOnce(true)
+                .setOnlyAlertOnce(false)
                 .setChannelId(options.getChannel())
                 .setContentTitle(options.getTitle())
                 .setContentText(options.getText())