cordova-plugin-ms-files
Advanced tools
Comparing version
{ | ||
"name": "cordova-plugin-ms-files", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Files and Discovery Cordova plugin.", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -123,5 +123,10 @@ | ||
var correspondingCacheItem = tokenCacheItems.filter(function (item) { | ||
return item.clientId === clientId;// && item.resource === resourceUrl; | ||
return item.clientId === clientId && item.resource === resourceUrl; | ||
})[0]; | ||
correspondingCacheItem = correspondingCacheItem || tokenCacheItems.filter(function (item) { | ||
return item.clientId === clientId && item.isMultipleResourceRefreshToken === true | ||
&& item.authority.replace(/\/?$/, '/') === authContext.authority.replace(/\/?$/, '/'); // Ensuring trailing slash exists | ||
})[0]; | ||
if (correspondingCacheItem == null) { | ||
@@ -128,0 +133,0 @@ authContext.acquireTokenAsync(resourceUrl, clientId, redirectUri).then(function (authResult) { |
Sorry, the diff of this file is not supported yet
2140883
0.01%6342
0.06%