possible fix for pads being duplicated in team drives

pull/1/head
ansuz 3 years ago
parent 1e2a059074
commit 5f757fd21f

@ -1172,7 +1172,7 @@ define([
var sendTo = []; var sendTo = [];
var inMyDrive; var inMyDrive;
getAllStores().forEach(function (s) { getAllStores().forEach(function (s) {
if (data.teamId && s.id !== data.teamId) { return; } if (data.teamId && Number(s.id) !== data.teamId) { return; }
if (storeLocally && s.id) { return; } if (storeLocally && s.id) { return; }
// If this is an edit link but we don't have edit rights, this entry is not useful // If this is an edit link but we don't have edit rights, this entry is not useful
@ -1189,7 +1189,7 @@ define([
// we need to make a copy of this pad in our drive. We're going to check // we need to make a copy of this pad in our drive. We're going to check
// if the pad is stored in our MAIN drive. // if the pad is stored in our MAIN drive.
// We only need to check this if the current manager is the target (data.teamId) // We only need to check this if the current manager is the target (data.teamId)
if (data.teamId === s.id) { if (data.teamId === Number(s.id)) {
inMyDrive = res.some(function (obj) { inMyDrive = res.some(function (obj) {
return !obj.fId; return !obj.fId;
}); });

Loading…
Cancel
Save