Skip to content

Commit

Permalink
Merge pull request #680 from danieltutuianu/master
Browse files Browse the repository at this point in the history
Update plugin.py
  • Loading branch information
jbleyel committed Aug 17, 2024
2 parents 266bcd8 + 001bd54 commit eb5890c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epgexport/src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ def piconURL(self, service):
picon_file = getPiconName(service)
if picon_file:
host = "%d.%d.%d.%d" % tuple(config.plugins.epgexport.ip.value) if config.plugins.epgexport.server.value == "ip" else config.plugins.epgexport.hostname.value
picon_url = "http://%s:80/picon/%s" % (host, basename(picon_file))
picon_url = "http://%s/picon/%s" % (host, basename(picon_file))
return picon_url

def generateChannels(self):
Expand Down

0 comments on commit eb5890c

Please sign in to comment.