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 da5992c commit 641e93cCopy full SHA for 641e93c
Runtime/MobileNotificationService.cs
@@ -93,8 +93,9 @@ public IGameNotification CreateNotification()
93
{
94
#if UNITY_EDITOR
95
return new EditorGameNotification();
96
-#endif
+#else
97
return _monoBehaviour.CreateNotification();
98
+#endif
99
}
100
101
/// <inheritdoc />
@@ -107,8 +108,9 @@ public PendingNotification ScheduleNotification(IGameNotification gameNotificati
107
108
gameNotification.Id = Math.Abs(DateTime.Now.ToString("yyMMddHHmmssffffff").GetHashCode());
109
110
return new PendingNotification(gameNotification);
111
112
return _monoBehaviour.ScheduleNotification(gameNotification);
113
114
115
116
0 commit comments