fix(mobile): un-hide WiFi-only message sync setting#21110
Open
xAlisher wants to merge 1 commit into
Open
Conversation
The `allowSyncingOnMobileNetwork` list item in Profile > Messaging was hidden with `visible: false` pending validation. The backend toggle (getSyncingOnMobileNetwork) is fully implemented and working. Removing the visibility guard exposes the setting so users can opt into Wi-Fi-only syncing and avoid LTE radio drain from Waku keepalives. Closes #21045 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Member
|
I think we were waiting for new designs, because the current UX was not great |
Member
Jenkins Builds
|
Member
|
I also think the corresponding backend has been nerfed, right @noeliaSD ? SO the switch wouldn't really do anything |
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The "Message syncing" setting in Profile > Messaging (allows users to restrict sync to Wi-Fi only) has been hidden behind
visible: falsesince v2.38. The backend implementation (getSyncingOnMobileNetwork) is complete and works correctly.Battery research (#21045) shows that on cellular (LTE), the Waku keepalive traffic makes Status the dominant battery consumer at ~144 mAh/hr (~3.2%/hr on a 4500 mAh battery) for a typical loaded account. Users who enable Wi-Fi-only syncing avoid this entirely — dropping from ~144 mAh/hr to ~1.6 mAh/hr (59.7× reduction, measured T4 vs T3 soaks).
Change
Remove
visible: falsefromallowSyncingOnMobileNetworkinMessagingView.qml.One line deletion. The setting, its toggle popup, and the backend save/load are all already implemented and tested.
Test plan
Related
🤖 Generated with Claude Code