Skip to content

Commit 183005d

Browse files
committed
Fix formatting
1 parent e2fc302 commit 183005d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.unity.mobile.notifications/Runtime/Android/Plugins/com/unity/androidnotifications/UnityNotificationUtilities.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ private static Notification deserializeNotificationParcelable(DataInputStream in
249249
if (!readAndCheckMagicNumber(in, UNITY_MAGIC_NUMBER_PARCELLED))
250250
return null;
251251
int version = in.readInt();
252-
if (version <0 || version > INTENT_SERIALIZATION_VERSION)
252+
if (version < 0 || version > INTENT_SERIALIZATION_VERSION)
253253
return null;
254254
Intent intent = deserializeParcelable(in);
255255
Notification notification = intent.getParcelableExtra(KEY_NOTIFICATION);

0 commit comments

Comments
 (0)