mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 00:10:32 +05:30
Fix crash when restoring local playlists
This commit is contained in:
parent
638ed56b69
commit
43e0aa0920
@ -7,8 +7,8 @@ import androidx.room.PrimaryKey
|
||||
@Entity
|
||||
data class LocalPlaylistItem(
|
||||
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
||||
@ColumnInfo var playlistId: Int,
|
||||
@ColumnInfo val videoId: String,
|
||||
@ColumnInfo var playlistId: Int = 0,
|
||||
@ColumnInfo val videoId: String = "",
|
||||
@ColumnInfo val title: String? = null,
|
||||
@ColumnInfo val uploadDate: String? = null,
|
||||
@ColumnInfo val uploader: String? = null,
|
||||
|
Loading…
x
Reference in New Issue
Block a user