Commit 93bec390 by Sebastián Katzer

Fixes #564 __NSCFNumber isEqualToString

parent db867ec3
...@@ -188,7 +188,9 @@ ...@@ -188,7 +188,9 @@
for (UILocalNotification* notification in notifications) for (UILocalNotification* notification in notifications)
{ {
if ([notification.options.id isEqualToNumber:id]) { NSString* fid = [NSString stringWithFormat:@"%@", notification.options.id];
if ([fid isEqualToString:[id stringValue]]) {
return notification; return notification;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment