mirror of https://github.com/oxen-io/session-ios
Fixed a number of issues found during testing, and some QA issues
• Updated the SyncPushTokensJob to wait for a bit for paths to build before failing • Updated the PushNotification service to be selectable via the dev settings • Updated the database timeout code to be a little more developer friendly • Updated the code to stop blocked contacts from appearing in the main conversation list • Removed the invalid "push-testnet" push server • Removed the logic to configure the APNS push service based on the service network (was incorrect) • Removed the 'Int' raw type constraint for the 'FeatureOption' • Fixed an issue where the initial conversation query for groups would fail due to an invalid join • Fixed an issue where the initial conversation query wouldn't include the 'markedUnread' flag (meaning the conversation wouldn't correctly get marked as read) • Fixed a rare bad memory crash • Fixed an issue where the modal wouldn't be dismissed after updating the group display name • Fixed an issue where the "Recreate Group" button was the wrong heightpull/894/head
parent
245623b4c6
commit
44b1d69551
@ -0,0 +1,2 @@
|
||||
# Exclude all code in the libwebp module from the Address Sanitiser (otherwise it won't build)
|
||||
module:libwebp
|
@ -1,10 +1,40 @@
|
||||
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
||||
|
||||
import Foundation
|
||||
import SessionUtilitiesKit
|
||||
|
||||
extension PushNotificationAPI {
|
||||
enum Service: String, Codable {
|
||||
// MARK: - FeatureStorage
|
||||
|
||||
public extension FeatureStorage {
|
||||
static let pushNotificationService: FeatureConfig<PushNotificationAPI.Service> = Dependencies.create(
|
||||
identifier: "pushNotificationService",
|
||||
defaultOption: .apns
|
||||
)
|
||||
}
|
||||
|
||||
// MARK: - PushNotificationAPI.Service
|
||||
|
||||
public extension PushNotificationAPI {
|
||||
enum Service: String, Codable, CaseIterable, FeatureOption {
|
||||
case apns
|
||||
case sandbox = "apns-sandbox" // Use for push notifications in Testnet
|
||||
|
||||
// MARK: - Feature Option
|
||||
|
||||
public static var defaultOption: Service = .apns
|
||||
|
||||
public var title: String {
|
||||
switch self {
|
||||
case .apns: return "Production"
|
||||
case .sandbox: return "Sandbox"
|
||||
}
|
||||
}
|
||||
|
||||
public var subtitle: String? {
|
||||
switch self {
|
||||
case .apns: return "This is the production push notification service."
|
||||
case .sandbox: return "This is the sandbox push notification service, it should be used when running builds from Xcode on a device to test notifications."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue