Remove duplicate line of code

While looking at the code , found a duplicate line of code, tested it locally after removal , all works fine.
This commit is contained in:
Hagay Goshen 2024-02-28 10:41:16 +02:00 committed by GitHub
parent e2e569e108
commit 1477b112a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,8 +124,7 @@ while home_window.get_property('exit') == 'False':
user_changed = True
if user_changed or first_run:
settings = xbmcaddon.Addon()
server_speed_check_data = settings.getSetting("server_speed_check_data")
settings = xbmcaddon.Addon()
server_speed_check_data = settings.getSetting("server_speed_check_data")
server_host = settings.getSetting('server_address')
if server_host is not None and server_host != "" and server_host != "<none>" and server_host not in server_speed_check_data: