()
| 289 | } |
| 290 | |
| 291 | isInternational(): boolean { |
| 292 | const feed = this.getFeed() |
| 293 | if (!feed) return false |
| 294 | |
| 295 | const broadcastAreaCodes = feed.getBroadcastArea().codes |
| 296 | if (broadcastAreaCodes.join(';').includes('r/')) return true |
| 297 | if (broadcastAreaCodes.filter(code => code.includes('c/')).length > 1) return true |
| 298 | |
| 299 | return false |
| 300 | } |
| 301 | |
| 302 | hasCategory(category: sdk.Models.Category): boolean { |
| 303 | const channel = this.getChannel() |