1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add 64-bit support

This commit is contained in:
Luke Pulverenti 2015-12-01 13:55:35 -05:00
parent 91051df493
commit 9227ac0989
5 changed files with 16 additions and 90 deletions

View file

@ -149,26 +149,29 @@
var cacheValue = appStorage.getItem(cacheKey);
if (cacheValue) {
var deferred = DeferredBuilder.Deferred();
deferred.resolveWith(null, [cacheValue == 'true']);
return deferred.promise();
return new Promise(function (resolve, reject) {
resolve(cacheValue == 'true');
});
} else {
return HttpClient.send({
type: 'GET',
url: 'https://mb3admin.com/admin/service/statistics/appAccess?application=AndroidV1&deviceId=' + deviceId
return fetch('https://mb3admin.com/admin/service/statistics/appAccess?application=AndroidV1&deviceId=' + deviceId, {
method: 'GET'
}).then(function () {
}).then(function (response) {
appStorage.setItem(cacheKey, 'true');
return true;
if (response.status == 404) {
appStorage.setItem(cacheKey, 'false');
} else if (response.status < 400) {
appStorage.setItem(cacheKey, 'true');
return true;
}
return false;
}, function (e) {
if (e.status == 404) {
appStorage.setItem(cacheKey, 'false');
}
return false;
});
}