Commit df01ac94 by Sebastián Katzer

Fix wrong type

parent bda666c3
......@@ -27,7 +27,7 @@
@interface APPLocalNotification (Private)
- (NSMutableDictionary*) repeatDict;
- (NSMutableDictionary*) userDict:(NSMutableDictionary*)options;
- (NSDictionary*) userDict:(NSMutableDictionary*)options;
- (UILocalNotification*) prepareNotification:(NSMutableDictionary*)options;
@end
\ No newline at end of file
......@@ -71,7 +71,7 @@
/**
* @private
*/
- (NSMutableDictionary*) userDict:(NSMutableDictionary*)options {
- (NSDictionary*) userDict:(NSMutableDictionary*)options {
NSString *notificationId = [options objectForKey:@"id"];
NSString *bg = [options objectForKey:@"background"];
NSString *fg = [options objectForKey:@"foreground"];
......
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