Remove setting uploaderUrl to empty string if null

This commit is contained in:
ktprograms 2021-08-14 20:59:38 +08:00
parent 85fbd2560d
commit 6f1958d398
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ data class PlaylistStreamEntry(
val item = StreamInfoItem(streamEntity.serviceId, streamEntity.url, streamEntity.title, streamEntity.streamType)
item.duration = streamEntity.duration
item.uploaderName = streamEntity.uploader
item.uploaderUrl = streamEntity.uploaderUrl ?: ""
item.uploaderUrl = streamEntity.uploaderUrl
item.thumbnailUrl = streamEntity.thumbnailUrl
return item