1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-04-26 00:31:22 +00:00

Make uploader_url column nullable

This commit is contained in:
ktprograms
2021-08-14 17:48:35 +08:00
parent bd0427c79f
commit 21bcadeecb
4 changed files with 8 additions and 8 deletions

View File

@@ -47,7 +47,7 @@ data class StreamEntity(
var uploader: String,
@ColumnInfo(name = STREAM_UPLOADER_URL)
var uploaderUrl: String,
var uploaderUrl: String? = null,
@ColumnInfo(name = STREAM_THUMBNAIL_URL)
var thumbnailUrl: String? = null,