Skip to content

Commit

Permalink
TSFilter: add support for BS/CS logo #17
Browse files Browse the repository at this point in the history
  • Loading branch information
kanreisa committed Aug 9, 2021
1 parent f25f43e commit 52872e7
Show file tree
Hide file tree
Showing 2 changed files with 293 additions and 69 deletions.
4 changes: 3 additions & 1 deletion src/Mirakurun/ChannelItem.ts
Expand Up @@ -179,7 +179,9 @@ export default class ChannelItem {
if (item !== null) {
item.name = service.name;
item.type = service.type;
item.logoId = service.logoId;
if (service.logoId > -1) {
item.logoId = service.logoId;
}
item.remoteControlKeyId = service.remoteControlKeyId;
} else if (add === true) {
_.service.add(
Expand Down

0 comments on commit 52872e7

Please sign in to comment.