Fix null pointer exception

This commit is contained in:
Shinokuni 2021-09-04 18:27:48 +02:00
parent b76ffb4fc6
commit b61f89300b
1 changed files with 1 additions and 1 deletions

View File

@ -14,5 +14,5 @@ data class ItemWithFeed(
@ColumnInfo(name = "background_color") @ColorInt val bgColor: Int,
@ColumnInfo(name = "icon_url") val feedIconUrl: String?,
@ColumnInfo(name = "siteUrl") val websiteUrl: String?,
@Embedded(prefix = "folder_") val folder: Folder,
@Embedded(prefix = "folder_") val folder: Folder?,
)