Detect FOTA with a generic flag in the user-agent.

This commit is contained in:
Jonathan Protzenko 2015-08-04 07:54:55 -07:00
Родитель 5ceecd4182
Коммит 26fef4f318
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -800,7 +800,7 @@ module TDev.Cloud {
}
export function isFota() {
return navigator.userAgent.indexOf("SamsungBrowser/microbit") > 0;
return navigator.userAgent.indexOf("Profile/OTA-DFU1.0") > 0;
}
export function postUserInstalledCompileAsync(guid: string, cppSource: string, meta: any = {}): Promise {