File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
main/java/org/thoughtcrime/securesms/conversation/v2/mention
test/java/org/thoughtcrime/securesms/conversation/v2 Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ class MentionViewModel(
111
111
}
112
112
recipient.isCommunityRecipient -> mmsSmsDatabase.getRecentChatMemberAddresses(
113
113
threadID,
114
- 20
114
+ 300
115
115
)
116
116
recipient.isContactRecipient -> listOf (recipient.address.toString())
117
117
else -> listOf ()
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ class MentionViewModelTest : BaseViewModelTest() {
116
116
threadID = threadID,
117
117
application = InstrumentationRegistry .getInstrumentation().context as android.app.Application ,
118
118
mmsSmsDatabase = mock {
119
- on { getRecentChatMemberAddresses(threadID, 20 )} doAnswer {
119
+ on { getRecentChatMemberAddresses(eq( threadID), any() )} doAnswer {
120
120
val limit = it.arguments[1 ] as Int
121
121
threadMembers.take(limit).map { m -> m.pubKey }
122
122
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ buildscript {
16
16
// classpath(files("libs/gradle-witness.jar"))
17
17
// classpath("com.squareup:javapoet:1.13.0")
18
18
if (project.hasProperty(" huawei" )) {
19
- classpath(" com.huawei.agconnect:agcp:1.9.1.300 " )
19
+ classpath(" com.huawei.agconnect:agcp:1.9.3.301 " )
20
20
}
21
21
}
22
22
}
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ photoviewVersion = "2.3.0"
54
54
phraseVersion = " 1.2.0"
55
55
lifecycleVersion = " 2.7.0"
56
56
materialVersion = " 1.12.0"
57
- mockitoKotlinVersion = " 5.4 .0"
57
+ mockitoKotlinVersion = " 6.0 .0"
58
58
okhttpVersion = " 5.1.0"
59
59
preferenceVersion = " 1.2.1"
60
60
protobufVersion = " 4.29.3"
You can’t perform that action at this time.
0 commit comments