mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
Merge pull request #2600 from Bnyro/master
Fix crash when restoring local playlists
This commit is contained in:
commit
b4722af048
@ -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…
Reference in New Issue
Block a user