mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-23 02:10:44 +01:00
Fix missing group size limit warnings.
This commit is contained in:
committed by
Alex Hart
parent
bca406c8d3
commit
ccdec5113f
@@ -25,7 +25,8 @@ class ContactChipViewModel : ViewModel() {
|
||||
.distinctUntilChanged()
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
|
||||
val count = store.state.size
|
||||
val count: Int
|
||||
get() = store.state.size
|
||||
|
||||
private val disposables = CompositeDisposable()
|
||||
private val disposableMap: MutableMap<RecipientId, Disposable> = mutableMapOf()
|
||||
|
||||
Reference in New Issue
Block a user