update local copy of file when describing (#8131)

This commit is contained in:
nullobsi 2022-01-21 00:43:51 -08:00 committed by GitHub
parent 9a4267f01f
commit 76db7ba781
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,10 +99,12 @@ export default defineComponent({
}, { }, {
done: result => { done: result => {
if (!result || result.canceled) return; if (!result || result.canceled) return;
let comment = result.result; let comment = result.result.length == 0 ? null : result.result;
os.api('drive/files/update', { os.api('drive/files/update', {
fileId: file.id, fileId: file.id,
comment: comment.length == 0 ? null : comment comment: comment,
}).then(() => {
file.comment = comment;
}); });
} }
}, 'closed'); }, 'closed');