lint compliance

This commit is contained in:
yflory 2020-07-07 15:03:55 +02:00
parent f78c02a646
commit 2bac4193df

View file

@ -212,7 +212,7 @@ define([
sf.teams.forEach(function (obj) {
obj.store.manager.deprecateProxy(obj.id, secret.channel);
if (obj.store.handleSharedFolder) {
obj.store.handleSharedFolder(id, null);
obj.store.handleSharedFolder(obj.id, null);
}
});
} catch (e) {}
@ -261,7 +261,7 @@ define([
clients.some(function (obj, i) {
if (obj.store.id === teamId) {
if (obj.store.handleSharedFolder) {
obj.store.handleSharedFolder(id, null);
obj.store.handleSharedFolder(obj.id, null);
}
idx = i;
return true;