Sort provider by index

This commit is contained in:
Benoit Marty 2023-04-07 21:57:55 +02:00 committed by Benoit Marty
parent 7333995630
commit 21a07fda07
4 changed files with 9 additions and 3 deletions

View file

@ -20,7 +20,9 @@ import io.element.android.libraries.matrix.api.MatrixClient
import io.element.android.libraries.push.providers.api.PushProvider
import javax.inject.Inject
class UnifiedPushProvider @Inject constructor(): PushProvider {
class UnifiedPushProvider @Inject constructor() : PushProvider {
override val index = 1
override fun getDistributorNames(): List<String> {
TODO("Not yet implemented")
}