File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed
featureflag/api/src/main/kotlin/io/element/android/libraries/featureflag/api
matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -78,15 +78,6 @@ enum class FeatureFlags(
78
78
// False so it's displayed in the developer options screen
79
79
isFinished = false ,
80
80
),
81
- SharePos (
82
- key = " feature.share_pos_v2" ,
83
- title = " Share pos in sliding sync" ,
84
- description = " Keep the sliding sync pos to make initial syncs faster. Requires an app restart to take effect." +
85
- " \n\n WARNING: this may cause issues with syncs." ,
86
- defaultValue = { true },
87
- // False so it's displayed in the developer options screen
88
- isFinished = false ,
89
- ),
90
81
SelectableMediaQuality (
91
82
key = " feature.selectable_media_quality" ,
92
83
title = " Select media quality per upload" ,
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class RustMatrixClientFactory @Inject constructor(
78
78
client.setUtdDelegate(UtdTracker (analyticsService))
79
79
80
80
val syncService = client.syncService()
81
- .withSharePos(enable = featureFlagService.isFeatureEnabled( FeatureFlags . SharePos ) )
81
+ .withSharePos(true )
82
82
.withOfflineMode()
83
83
.finish()
84
84
You can’t perform that action at this time.
0 commit comments