Added check channel data

This commit is contained in:
freearhey 2019-08-07 16:20:56 +03:00
parent de07e2d69d
commit 08c97b10a1

View File

@ -24,9 +24,9 @@ class Playlist {
class Channel {
constructor(data) {
this.id = data.id
this.name = data.name
this.logo = data.logo
this.id = data.id || ''
this.name = data.name || ''
this.logo = data.logo || ''
this.group = this._getGroup(data.group)
this.url = data.url
this.title = data.title