Skip to content

Commit

Permalink
Update plugin.py
Browse files Browse the repository at this point in the history
Removed the hardcoded port 80 to use a custom port
  • Loading branch information
danieltutuianu authored Aug 17, 2024
1 parent 266bcd8 commit 001bd54
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 001bd54

Please sign in to comment.