Browse Source

Fix Team Drive is read only even for owners #464

master
yflory 1 year ago
parent
commit
fd36825f45
1 changed files with 3 additions and 1 deletions
  1. 4
      www/common/outer/sharedfolder.js

4
www/common/outer/sharedfolder.js

@ -309,7 +309,9 @@ define([
isNewChannel: Store.isNewChannel
}, id, sf, waitFor());
});
}).nThen(waitFor());
}).nThen(function () {
setTimeout(waitFor());
});
};
return SF;

Loading…
Cancel
Save