Fix crash in tab_online when cURL is disabled
This commit is contained in:
parent
c0bab6cf40
commit
cacef5ad3a
|
@ -47,6 +47,15 @@ function serverlistmgr.sync()
|
||||||
}}
|
}}
|
||||||
end
|
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
|
if public_downloading then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue