diff --git a/src/core/BaseService.ts b/src/core/BaseService.ts index 1deb8c08..401215df 100644 --- a/src/core/BaseService.ts +++ b/src/core/BaseService.ts @@ -516,7 +516,7 @@ export class BaseService { options?: BaseOptionsExtended ): Promise { const manager = this.extractManager(options); - const found = await this.findOne(where); + const found = await this.findOne(where, userId, options); const updatedByIdObject: WarthogSpecialModel = this.hasColumn('updatedById') ? { updatedById: userId } : {};