Merge pull request #4312 from element-hq/feature/bma/fixMultipleNtfy

Fix issues due to multiple ntfy applications with the same name.
This commit is contained in:
Benoit Marty 2025-02-26 17:21:51 +01:00 committed by GitHub
commit 1bbcedfa38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 121 additions and 60 deletions

View file

@ -18,4 +18,6 @@ package io.element.android.libraries.pushproviders.api
data class Distributor(
val value: String,
val name: String,
)
) {
val fullName = "$name ($value)"
}