From 001bd54e16c2ba58715ca06300a0ace7fea6034b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20=C8=9Au=C8=9Buianu?= Date: Sat, 17 Aug 2024 14:09:48 +0300 Subject: [PATCH] Update plugin.py Removed the hardcoded port 80 to use a custom port --- epgexport/src/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epgexport/src/plugin.py b/epgexport/src/plugin.py index c55561f70..2d44f2c3e 100644 --- a/epgexport/src/plugin.py +++ b/epgexport/src/plugin.py @@ -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):