Skip to content

Commit

Permalink
fix: crash when importing subscriptions list with invalid avatars (#5931
Browse files Browse the repository at this point in the history
)

Solves issue of subscription list not loading when channels have old/invalid avatars.
  • Loading branch information
bodaciousbiscuits authored Apr 23, 2024
1 parent d6e46c3 commit 480abe1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit 480abe1

Please sign in to comment.