1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-01 02:06:51 +00:00

Merge pull request #14 from Szymek887/patch-1

Fix 'Expected type after 'as''
This commit is contained in:
Benimautner 2022-08-23 14:26:01 +02:00 committed by GitHub
commit 78bf91aed9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ import Flutter
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().delegate = self as ? UNUserNotificationCenterDelegate
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
}
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}