diff options
Diffstat (limited to 'server/helpers/database-utils.ts')
-rw-r--r-- | server/helpers/database-utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/database-utils.ts b/server/helpers/database-utils.ts index b4adaf9cc..31808f9e4 100644 --- a/server/helpers/database-utils.ts +++ b/server/helpers/database-utils.ts | |||
@@ -36,7 +36,7 @@ function transactionRetryer <T> (func: (err: any, data: T) => any) { | |||
36 | }) | 36 | }) |
37 | } | 37 | } |
38 | 38 | ||
39 | function updateInstanceWithAnother <T> (instanceToUpdate: Model<T>, baseInstance: Model<T>) { | 39 | function updateInstanceWithAnother <T extends Model<T>> (instanceToUpdate: Model<T>, baseInstance: Model<T>) { |
40 | const obj = baseInstance.toJSON() | 40 | const obj = baseInstance.toJSON() |
41 | 41 | ||
42 | for (const key of Object.keys(obj)) { | 42 | for (const key of Object.keys(obj)) { |