lint compliance
This commit is contained in:
@@ -1185,12 +1185,11 @@ define([
|
||||
}));
|
||||
}).nThen(function (waitFor) {
|
||||
// 2a. add the shared folder to the path in our drive
|
||||
console.log('adding');
|
||||
store.userObject.add(id, path);
|
||||
onSync(waitFor());
|
||||
|
||||
// 2b. load the proxy
|
||||
rt = loadSharedFolder(id, data.folderData, waitFor(function () {
|
||||
loadSharedFolder(id, data.folderData, waitFor(function (rt) {
|
||||
if (data.metadata) { // Creating a new shared folder
|
||||
rt.proxy.metadata = data.metadata;
|
||||
onSync(waitFor());
|
||||
|
||||
@@ -92,7 +92,7 @@ define([
|
||||
var fd = exp.getFileData(id);
|
||||
var channelId = fd.channel;
|
||||
// If trying to remove an owned pad, remove it from server also
|
||||
if (!isOwnPadRemoved &&
|
||||
if (!isOwnPadRemoved && !sharedFolder &&
|
||||
fd.owners && fd.owners.indexOf(edPublic) !== -1 && channelId) {
|
||||
removeOwnedChannel(channelId, function (obj) {
|
||||
if (obj && obj.error) {
|
||||
@@ -113,10 +113,6 @@ define([
|
||||
});
|
||||
if (!toClean.length) { return; }
|
||||
cb(null, toClean);
|
||||
unpinPads(toClean, function (response) {
|
||||
if (response && response.error) { return console.error(response.error); }
|
||||
// console.error(response);
|
||||
});
|
||||
};
|
||||
var deleteHrefs = function (ids) {
|
||||
ids.forEach(function (obj) {
|
||||
|
||||
Reference in New Issue
Block a user