forked from FoundKeyGang/FoundKey
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
|
const file = await DriveFile
|
||||||
.findOne({
|
.findOne({
|
||||||
_id: fileId,
|
_id: fileId,
|
||||||
'metadata.userId': user._id
|
'metadata.userId': user._id,
|
||||||
|
'metadata.deletedAt': { $exists: false }
|
||||||
});
|
});
|
||||||
|
|
||||||
if (file === null) {
|
if (file === null) {
|
||||||
|
|
Loading…
Reference in a new issue