Commit 97756691 authored by Alish's avatar Alish
Browse files

fix: removeMultipleByIds function #1009

parent 4961e6e6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -298,7 +298,8 @@ export abstract class DBService<T extends DBObject<any, any>>
			{
				_id: { $in: ids.map((id) => this.getObjectId(id)) }
			},
			{ isDeleted: true }
			{ isDeleted: true },
			{ multi: true }
		).exec();
	}