New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-ms-files

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-ms-files - npm Package Compare versions

Comparing version

to
0.6.0

2

package.json
{
"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