surrounding InitDeviceScan in try/catch in case something wrong happens. This prevents the hook to die

This commit is contained in:
antisnatchor
2015-02-17 12:19:09 +01:00
parent bf0f59e5d0
commit ff9da502cb

View File

@@ -703,4 +703,6 @@ function InitDeviceScan()
isTierGenericMobile = DetectTierOtherPhones();
};
InitDeviceScan()
try {
InitDeviceScan();
}catch(e){}