Fixes build error

This commit is contained in:
freearhey 2025-03-08 02:54:20 +03:00
parent f2c026cec0
commit 89e188f6b2
3 changed files with 63 additions and 57 deletions

View file

@ -41,4 +41,10 @@ export class Channel {
this._guides = data.guides || []
this._blocklistRecords = data.blocklistRecords || []
}
toObject() {
const { ...object } = this
return object
}
}