浏览代码

fix: app data check error in write

KernelDeimos 4 月之前
父节点
当前提交
5ef75e5df3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/backend/src/filesystem/hl_operations/hl_write.js

+ 1 - 1
src/backend/src/filesystem/hl_operations/hl_write.js

@@ -302,7 +302,7 @@ class HLWrite extends HLFilesystemOperation {
         this.checkpoint('before thumbnail');
 
         let thumbnail_promise = new TeePromise();
-        if ( await destination.isAppDataDirectory() || values.no_thumbnail ) {
+        if ( await parent.isAppDataDirectory() || values.no_thumbnail ) {
             thumbnail_promise.resolve(undefined);
         } else (async () => {
             const reason = await (async () => {