Skip to content

Commit

Permalink
[softwareUpdate] do not check the contents of the result of the onlin…
Browse files Browse the repository at this point in the history
…e check
  • Loading branch information
WanWizard committed Jan 2, 2025
1 parent 2816e4b commit 95db2e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Screens/SoftwareUpdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def checkTraficLight(self):
# check for general web connectivity first
url = "http://downloads.openpli.org/online.php"
try:
status = dict(load(urlopen(url, timeout=5)))
status = urlopen(url, timeout=5)
except Exception as er:
pass

Expand Down

0 comments on commit 95db2e1

Please sign in to comment.