Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module xteve
go 1.16

require (
github.com/gorilla/websocket v1.4.2 // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/koron/go-ssdp v0.0.2 // indirect
github.com/gorilla/websocket v1.4.2
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/koron/go-ssdp v0.0.2
)
2 changes: 1 addition & 1 deletion src/xepg.go
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ func getPoster(program *Program, xmltvProgram *Program, xepgChannel XEPGChannelS

if len(xmltvProgram.Poster) == 0 {
var poster Poster
poster.Src = imgc.Image.GetURL(poster.Src)
poster.Src = imgc.Image.GetURL(xepgChannel.TvgLogo)
program.Poster = append(program.Poster, poster)
}

Expand Down