fix crash when opening some audio attachments (#2002)
This commit is contained in:
parent
3558d441a4
commit
9793035a3d
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ import kotlinx.android.parcel.Parcelize
|
|||
data class Attachment(
|
||||
val id: String,
|
||||
val url: String,
|
||||
@SerializedName("preview_url") val previewUrl: String,
|
||||
@SerializedName("preview_url") val previewUrl: String?, // can be null for e.g. audio attachments
|
||||
val meta: MetaData?,
|
||||
val type: Type,
|
||||
val description: String?,
|
||||
|
|
Loading…
Reference in a new issue