-
Notifications
You must be signed in to change notification settings - Fork 26
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
feat: Conversation MLS verification status updating (WPB-3872) #2224
feat: Conversation MLS verification status updating (WPB-3872) #2224
Conversation
Test Results622 tests - 1 621 ✔️ - 1 3m 59s ⏱️ - 5m 16s Results for commit 1fb8030. ± Comparison against base commit 4e7a254. This pull request removes 1 test.
♻️ This comment has been updated with latest results. |
Build 715 failed. |
Build 727 failed. |
Codecov Report
@@ Coverage Diff @@
## develop #2224 +/- ##
=============================================
- Coverage 40.51% 40.49% -0.02%
Complexity 1014 1014
=============================================
Files 318 318
Lines 11670 11668 -2
Branches 1553 1552 -1
=============================================
- Hits 4728 4725 -3
- Misses 6497 6498 +1
Partials 445 445
Continue to review full report in Codecov by Sentry.
|
APKs built during tests are available here. Scroll down to Artifacts! |
Build 734 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 764 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 767 succeeded. The build produced the following APK's: |
Just converting to draft while there is no description. |
@@ -194,6 +180,24 @@ private fun ConversationScreenTopAppBarContent( | |||
) | |||
} | |||
|
|||
@Composable | |||
private fun VerificationIcon(protocolInfo: Conversation.ProtocolInfo?) { | |||
if (protocolInfo?.verificationStatus != Conversation.VerificationStatus.VERIFIED) return |
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.
if (protocolInfo?.verificationStatus != Conversation.VerificationStatus.VERIFIED) return | |
if (protocolInfo?.verificationStatus == Conversation.VerificationStatus.NOT_VERIFIED) return |
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.
do not agree. If the conversation status is Degraded we shouldn't display any icon just like it's not verified (design )
Build 913 failed. |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 937 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 999 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 1025 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 1038 succeeded. The build produced the following APK's: |
APKs built during tests are available here. Scroll down to Artifacts! |
Build 1046 succeeded. The build produced the following APK's: |
What's new in this PR?
In fact just adopting AR to changes from kalium PR
including:
removing usage of
GetConversationVerificationStatusUseCase
as the observing of conversation verification state is done inObserveConversationDetailsUseCase
Needs releases with: