mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 05:23:09 +02:00
Fix bug
This commit is contained in:
parent
1067bef7d6
commit
9e4b061ed0
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ export default async (params: any, user: ILocalUser) => {
|
|||
const file = await DriveFile
|
||||
.findOne({
|
||||
_id: fileId,
|
||||
'metadata.userId': user._id
|
||||
'metadata.userId': user._id,
|
||||
'metadata.deletedAt': { $exists: false }
|
||||
});
|
||||
|
||||
if (file === null) {
|
||||
|
|
Loading…
Reference in a new issue