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