Remove FeatureFlag.SharePos
This commit is contained in:
parent
45150de5b3
commit
8b511ca48a
2 changed files with 1 additions and 10 deletions
|
|
@ -78,15 +78,6 @@ enum class FeatureFlags(
|
||||||
// False so it's displayed in the developer options screen
|
// False so it's displayed in the developer options screen
|
||||||
isFinished = false,
|
isFinished = false,
|
||||||
),
|
),
|
||||||
SharePos(
|
|
||||||
key = "feature.share_pos_v2",
|
|
||||||
title = "Share pos in sliding sync",
|
|
||||||
description = "Keep the sliding sync pos to make initial syncs faster. Requires an app restart to take effect." +
|
|
||||||
"\n\nWARNING: this may cause issues with syncs.",
|
|
||||||
defaultValue = { true },
|
|
||||||
// False so it's displayed in the developer options screen
|
|
||||||
isFinished = false,
|
|
||||||
),
|
|
||||||
SelectableMediaQuality(
|
SelectableMediaQuality(
|
||||||
key = "feature.selectable_media_quality",
|
key = "feature.selectable_media_quality",
|
||||||
title = "Select media quality per upload",
|
title = "Select media quality per upload",
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ class RustMatrixClientFactory @Inject constructor(
|
||||||
client.setUtdDelegate(UtdTracker(analyticsService))
|
client.setUtdDelegate(UtdTracker(analyticsService))
|
||||||
|
|
||||||
val syncService = client.syncService()
|
val syncService = client.syncService()
|
||||||
.withSharePos(enable = featureFlagService.isFeatureEnabled(FeatureFlags.SharePos))
|
.withSharePos(true)
|
||||||
.withOfflineMode()
|
.withOfflineMode()
|
||||||
.finish()
|
.finish()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue