Skip to content

Commit

Permalink
enable history by default for adhoc builds
Browse files Browse the repository at this point in the history
  • Loading branch information
brindy committed Mar 13, 2024
1 parent e3e6756 commit bbe86c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Core/HistoryManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ public class HistoryManager: HistoryManaging {
}

func isHistoryFeatureEnabled() -> Bool {
return privacyConfigManager.privacyConfig.isEnabled(featureKey: .history) && variantManager.isSupported(feature: .history)
#warning("DO NOT MERGE THIS")

Check warning on line 77 in Core/HistoryManager.swift

View workflow job for this annotation

GitHub Actions / Unit Tests

DO NOT MERGE THIS

Check warning on line 77 in Core/HistoryManager.swift

View workflow job for this annotation

GitHub Actions / Make Release Build

DO NOT MERGE THIS

Check warning on line 77 in Core/HistoryManager.swift

View workflow job for this annotation

GitHub Actions / Make Release Build

DO NOT MERGE THIS
return true
// return privacyConfigManager.privacyConfig.isEnabled(featureKey: .history) && variantManager.isSupported(feature: .history)
}

public func removeAllHistory() async {
Expand Down

0 comments on commit bbe86c6

Please sign in to comment.