LeoNatan/LNNotificationsUI

Date parameter is ignored in [LNNotification notificationWithMessage:title:icon:date:]

dr-mobiblocks opened this issue · 1 comments

+ (instancetype)notificationWithMessage:(NSString*)message title:(NSString*)title icon:(UIImage*)icon date:(NSDate*)date
{
    return [[LNNotification alloc] initWithMessage:message title:title icon:icon date:[NSDate date]]; // <---- date not passed
}

Good catch, thanks! Want to submit a PR with a fix?