Fixes network discovery page selection

Fixes #2155
This commit is contained in:
Simone Mainardi 2018-11-20 11:51:26 +01:00
parent 17e5f2bec7
commit 5f9d979d58
3 changed files with 8 additions and 2 deletions

View file

@ -1235,7 +1235,8 @@ end
-- #################################
function getOperatingSystemName(id)
if(id == 1) then return("Linux")
if(id == 0) then return("Unknown")
elseif(id == 1) then return("Linux")
elseif(id == 2) then return("Windows")
elseif(id == 3) then return("MacOS")
elseif(id == 4) then return("iOS")