We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4443667 commit ac09747Copy full SHA for ac09747
OneSignalSDK/onesignal/src/main/java/com/onesignal/UpgradeReceiver.java
@@ -37,10 +37,10 @@ public class UpgradeReceiver extends BroadcastReceiver {
37
@Override
38
public void onReceive(Context context, Intent intent) {
39
40
- // Return early if using Android 7.0 or earlier due to upgrade restore crash (#263)
+ // Return early if using Android 7.0 due to upgrade restore crash (#263)
41
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.N)
42
return;
43
44
NotificationRestorer.startDelayedRestoreTaskFromReceiver(context);
45
}
46
-}
+}
0 commit comments