From f0ce6964e908c4a4d71e3f45e8565888508b5860 Mon Sep 17 00:00:00 2001 From: gmbnt Date: Tue, 7 Apr 2020 10:21:32 +1000 Subject: [PATCH] Fix build --- LokiPushNotificationService/NotificationServiceExtension.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LokiPushNotificationService/NotificationServiceExtension.swift b/LokiPushNotificationService/NotificationServiceExtension.swift index af769bded..4fa3eacf6 100644 --- a/LokiPushNotificationService/NotificationServiceExtension.swift +++ b/LokiPushNotificationService/NotificationServiceExtension.swift @@ -199,7 +199,7 @@ final class NotificationServiceExtension : UNNotificationServiceExtension { func completeWithFailure(content: UNMutableNotificationContent) { content.body = "You've got a new message." content.title = "Session" - let userInfo: [String:Any] = [NotificationService.isFromRemoteKey : true] + let userInfo: [String:Any] = [NotificationServiceExtension.isFromRemoteKey : true] content.userInfo = userInfo contentHandler?(content) }