diff --git a/src/backend/src/filesystem/FSNodeContext.js b/src/backend/src/filesystem/FSNodeContext.js index adde89146..b2ce41d9b 100644 --- a/src/backend/src/filesystem/FSNodeContext.js +++ b/src/backend/src/filesystem/FSNodeContext.js @@ -787,6 +787,10 @@ module.exports = class FSNodeContext { return this.uid === fsNode.uid; } + if ( this.path && fsNode.path ) { + return await this.get('path') === await fsNode.get('path'); + } + await this.fetchEntry(); await fsNode.fetchEntry(); return this.uid === fsNode.uid;