-
Notifications
You must be signed in to change notification settings - Fork 226
Remove event cache feature flag #4719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
📱 Scan the QR code below to install the build (arm64 only) for this PR. |
Also remove associated conditionals.
672c6e7
to
95b9bb9
Compare
@@ -263,8 +263,6 @@ class RoomListPresenter @Inject constructor( | |||
isFavorite = event.roomSummary.isFavorite, | |||
markAsUnreadFeatureFlagEnabled = featureFlagService.isFeatureEnabled(FeatureFlags.MarkAsUnread), | |||
hasNewContent = event.roomSummary.hasNewContent, | |||
eventCacheFeatureFlagEnabled = appPreferencesStore.isDeveloperModeEnabledFlow().first() && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's too much removal, I think we should keep the test appPreferencesStore.isDeveloperModeEnabledFlow().first()
style = ListItemStyle.Primary, | ||
) | ||
} | ||
ListItem( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be displayed only in developer mode
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #4719 +/- ##
===========================================
- Coverage 80.09% 80.09% -0.01%
===========================================
Files 2129 2129
Lines 56416 56409 -7
Branches 7052 7051 -1
===========================================
- Hits 45188 45181 -7
Misses 8811 8811
Partials 2417 2417 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the update!
Content
What the title says. Also remove associated conditionals.
Motivation and context
Clean up after #4716
Screenshots / GIFs
The should be no changes.
Tests
There should be no feature flag anymore and the 'clear room cache' action should be visible as long as the developer options are enabled.
Tested devices
Checklist