diff --git a/Fervor/Feed.swift b/Fervor/Feed.swift index 45f8313..f34e99c 100644 --- a/Fervor/Feed.swift +++ b/Fervor/Feed.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 10/29/21. // -@preconcurrency import Foundation +import Foundation public struct Feed: Decodable, Sendable { public let id: FervorID diff --git a/Fervor/FervorClient.swift b/Fervor/FervorClient.swift index 3c8158d..26ca44b 100644 --- a/Fervor/FervorClient.swift +++ b/Fervor/FervorClient.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 11/25/21. // -@preconcurrency import Foundation +import Foundation public actor FervorClient: Sendable { diff --git a/Fervor/Group.swift b/Fervor/Group.swift index f638fba..eff71ac 100644 --- a/Fervor/Group.swift +++ b/Fervor/Group.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 10/29/21. // -@preconcurrency import Foundation +import Foundation public struct Group: Decodable, Sendable { public let id: FervorID diff --git a/Fervor/Instance.swift b/Fervor/Instance.swift index 8b67336..b19a490 100644 --- a/Fervor/Instance.swift +++ b/Fervor/Instance.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 10/29/21. // -@preconcurrency import Foundation +import Foundation public struct Instance: Decodable, Sendable { public let name: String diff --git a/Fervor/Item.swift b/Fervor/Item.swift index 86505f4..26f1e85 100644 --- a/Fervor/Item.swift +++ b/Fervor/Item.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 10/29/21. // -@preconcurrency import Foundation +import Foundation public struct Item: Decodable, Sendable { public let id: FervorID diff --git a/Fervor/ItemsSyncUpdate.swift b/Fervor/ItemsSyncUpdate.swift index eea7b00..4f01c0c 100644 --- a/Fervor/ItemsSyncUpdate.swift +++ b/Fervor/ItemsSyncUpdate.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 1/9/22. // -@preconcurrency import Foundation +import Foundation public struct ItemsSyncUpdate: Decodable, Sendable { diff --git a/Reader/FervorController.swift b/Reader/FervorController.swift index 9c32f89..9be01ff 100644 --- a/Reader/FervorController.swift +++ b/Reader/FervorController.swift @@ -5,9 +5,9 @@ // Created by Shadowfacts on 11/25/21. // -@preconcurrency import Foundation +import Foundation import Fervor -@preconcurrency import OSLog +import OSLog import Combine actor FervorController { diff --git a/Reader/SceneDelegate.swift b/Reader/SceneDelegate.swift index a57e2a1..172f623 100644 --- a/Reader/SceneDelegate.swift +++ b/Reader/SceneDelegate.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 10/29/21. // -@preconcurrency import Foundation +import Foundation import UIKit import OSLog diff --git a/Reader/Screens/AppSplitViewController.swift b/Reader/Screens/AppSplitViewController.swift index 678c58f..aa2d71c 100644 --- a/Reader/Screens/AppSplitViewController.swift +++ b/Reader/Screens/AppSplitViewController.swift @@ -59,7 +59,6 @@ class AppSplitViewController: UISplitViewController { let nav = viewController(for: .compact) as! UINavigationController let top = nav.topViewController! if top is ReadViewController || top is ItemsViewController { - print(top.userActivity?.activityType) return top.userActivity } } else { diff --git a/Reader/Screens/Login/LoginViewController.swift b/Reader/Screens/Login/LoginViewController.swift index ad224ec..b063835 100644 --- a/Reader/Screens/Login/LoginViewController.swift +++ b/Reader/Screens/Login/LoginViewController.swift @@ -5,7 +5,7 @@ // Created by Shadowfacts on 11/25/21. // -@preconcurrency import Foundation +import Foundation import UIKit import AuthenticationServices import Fervor