fix: crash when importing subscriptions list with invalid avatars (#5931)

Solves issue of subscription list not loading when channels have old/invalid avatars.
This commit is contained in:
bodaciousbiscuits 2024-04-23 06:25:56 -05:00 committed by GitHub
parent d6e46c38d6
commit 480abe13aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,6 +6,6 @@ import kotlinx.serialization.Serializable
data class Subscription(
val url: String,
val name: String,
val avatar: String,
val avatar: String? = null,
val verified: Boolean
)