possible fix for pads being duplicated in team drives

This commit is contained in:
ansuz 2022-02-28 14:34:57 +05:30
parent 1e2a059074
commit 5f757fd21f

View file

@ -1172,7 +1172,7 @@ define([
var sendTo = [];
var inMyDrive;
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 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
// if the pad is stored in our MAIN drive.
// 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) {
return !obj.fId;
});