-
Notifications
You must be signed in to change notification settings - Fork 29
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
fix: Delete conversation Crash #WPB-14938 #3848
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #3848 +/- ##
===========================================
- Coverage 45.28% 45.19% -0.10%
===========================================
Files 491 491
Lines 16952 16988 +36
Branches 2844 2844
===========================================
Hits 7677 7677
- Misses 8489 8525 +36
Partials 786 786
Continue to review full report in Codecov by Sentry.
|
Built wire-android-staging-compat-pr-3848.apk is available for download |
Built wire-android-dev-debug-pr-3848.apk is available for download |
.setAutoCancel(true) | ||
.setSilent(true) | ||
.setCategory(NotificationCompat.CATEGORY_SERVICE) | ||
.setProgress(0, 0, true) |
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.
suggestion: I think we don't need to show any progress on this notification
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.
god damn copy-past 😅
Quality Gate passedIssues Measures |
Built wire-android-staging-compat-pr-3848.apk is available for download |
Built wire-android-dev-debug-pr-3848.apk is available for download |
What's new in this PR?
Issues
Crash when user trying to "leave and delete the group" or just "delete group locally"
Causes (Optional)
App runs
DeleteConversationLocallyWorker
to remove all the conversation data, but that worker doesn't implementfun getForegroundInfo()
Solutions
implement
fun getForegroundInfo()
inDeleteConversationLocallyWorker
also implemented that fun in
PersistentWebsocketCheckWorker
just in case