mirror of
https://github.com/iptv-org/database.git
synced 2025-05-09 19:20:01 -04:00
Update issueData.ts
This commit is contained in:
parent
f6c19df600
commit
e4bd474e31
1 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,9 @@ export class IssueData {
|
|||
}
|
||||
|
||||
getBoolean(key: string): boolean | undefined {
|
||||
return this.missing(key) ? undefined : this._data.get(key)
|
||||
if (this.missing(key)) return undefined
|
||||
|
||||
return this._data.get(key) === 'TRUE' ? true : false
|
||||
}
|
||||
|
||||
getString(key: string): string | undefined {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue