More fixes to groups

This commit is contained in:
Joshua Higgins
2025-06-05 00:22:56 -04:00
parent 7fc60e939e
commit 8b572b8918
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import Foundation import Foundation
import UIKit import UIKit
var appGroupID = "group."+Bundle.main.bundleIdentifier.unsafelyUnwrapped var appGroupID = "group."+Bundle.main.bundleIdentifier.unsafelyUnwrapped.replacing(".iMessage", with:"")
class GIFFileManager { class GIFFileManager {
static let shared = GIFFileManager() static let shared = GIFFileManager()

View File

@@ -17,7 +17,7 @@ class ShareViewController: SLComposeServiceViewController {
private var debugMessages: [String] = [] private var debugMessages: [String] = []
// Use the same constants as in the main app // Use the same constants as in the main app
private let appGroupID = "group."+Bundle.main.bundleIdentifier.unsafelyUnwrapped private let appGroupID = "group."+Bundle.main.bundleIdentifier.unsafelyUnwrapped.replacing(".Share", with:"")
private let pendingGIFsKey = "pendingGIFs" private let pendingGIFsKey = "pendingGIFs"
override func viewDidLoad() { override func viewDidLoad() {