Fix crash in tab_online when cURL is disabled

master
rubenwardy 2021-02-09 12:39:36 +00:00
parent 1d64e6537c
commit b28749057a
1 changed files with 9 additions and 0 deletions

View File

@ -47,6 +47,15 @@ function serverlistmgr.sync()
}}
end
local serverlist_url = core.settings:get("serverlist_url") or ""
if not core.get_http_api or serverlist_url == "" then
serverlistmgr.servers = {{
name = fgettext("Public server list is disabled"),
description = ""
}}
return
end
if public_downloading then
return
end