Sean Biganski

Results 2 comments of Sean Biganski

I had this issue and isolated it to the following: ``` void Start() { OneSignal.Default.Initialize("secrets"); OneSignal.Default.NotificationOpened += OnNotificationOpened; } ``` And ``` void OnNotificationOpened(NotificationOpenedResult result) { var notif = result.notification;...

@shepherd-l Yes, the app would actually freeze if I tried to force the value into an int. Storing the value in a string and later converting it to an int...