Skip to content

Commit

Permalink
//nolint:gosimple
Browse files Browse the repository at this point in the history
  • Loading branch information
SlashNephy committed Sep 11, 2023
1 parent fa9a491 commit 7c30eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func execute(ctx context.Context) error {
name = width.Fold.String(norm.NFKC.String(service.Name))
}

transportStreamID, _ := transportStreamIDs[service.ID]
transportStreamID, _ := transportStreamIDs[service.ID] //nolint:gosimple
file.AddChannel(channelType, &external.BonDriverChannel{
Name: name,
ChannelIndex: initialIndices[service.ID],
Expand Down Expand Up @@ -155,7 +155,7 @@ func execute(ctx context.Context) error {
name = norm.NFKC.String(channel.HalfWidthName)
}

transportStreamID, _ := transportStreamIDs[channel.ID]
transportStreamID, _ := transportStreamIDs[channel.ID] //nolint:gosimple
file.AddChannel(channelType, &external.BonDriverChannel{
Name: name,
RemoteControlKeyID: channel.RemoteControlKeyID,
Expand Down

0 comments on commit 7c30eec

Please sign in to comment.