fix: missing condition in ownership check

Not sure when this went away, but we were always getting the
permission though the file path instead of ID/UUID from what it
looks like, which was hiding this problem.
This commit is contained in:
KernelDeimos
2025-09-12 16:45:39 -04:00
parent b8354cc4a6
commit c508189455
@@ -119,6 +119,10 @@ class FilesystemService extends BaseService {
);
}
if ( owner_id === actor.type.user.id ) {
return {};
}
return undefined;
},
}));