Skip to content

Commit

Permalink
Feature flags for production.
Browse files Browse the repository at this point in the history
  • Loading branch information
Imperiopolis committed Jun 9, 2020
1 parent 3460871 commit 78efe41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SignalServiceKit/src/Util/FeatureFlags.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extension FeatureBuild {
}
}

let build: FeatureBuild = OWSIsDebugBuild() ? .dev : .beta
let build: FeatureBuild = .production

// MARK: -

Expand Down Expand Up @@ -335,5 +335,5 @@ public class DebugFlags: NSObject {
public static let deviceTransferVerboseProgressLogging = build.includes(.qa)

@objc
public static let forceMessageRequests = true// build.includes(.qa) && FeatureFlags.groupsV2
public static let forceMessageRequests = build.includes(.qa) && FeatureFlags.groupsV2
}

0 comments on commit 78efe41

Please sign in to comment.