1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-13 13:17:54 +03:00

fixed detection of iPad & iPhone

This commit is contained in:
Adolfo Gómez García 2021-02-14 22:02:24 +01:00
parent a3ced4af30
commit d1f83e4ae4

View File

@ -50,7 +50,7 @@ iPhone = 'iPhone' # In fact, these are IOS both, but we can diferentiate it...
WYSE = 'WYSE'
Unknown = 'Unknown'
knownOss = (WindowsPhone, Android, Linux, Windows, Macintosh, iPad, iPhone, ChromeOS, WYSE) # Android is linux also, so it is cheched on first place
knownOss = (WindowsPhone, Android, Linux, Windows, iPad, iPhone, Macintosh, ChromeOS, WYSE) # Android is linux also, so it is cheched on first place
allOss = knownOss + (Unknown,)
desktopOss = (Linux, Windows, Macintosh)