Added check channel data

This commit is contained in:
freearhey
2019-08-07 16:20:56 +03:00
parent 639fd44a7f
commit a63040e91a

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