diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-19 16:12:07 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-19 16:12:07 +0200 |
commit | d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04 (patch) | |
tree | 67cb4d2774dd7127499b882a5aa5069ea6fa86b2 /server/models | |
parent | 12ba460e9ebf4951f9c1caee8822a8ca1523563f (diff) | |
download | PeerTube-d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04.tar.gz PeerTube-d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04.tar.zst PeerTube-d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04.zip |
Put config redundancy strategies in "strategies" subkey
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/video/tag.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/server/models/video/tag.ts b/server/models/video/tag.ts index e39a418cd..b39621eaf 100644 --- a/server/models/video/tag.ts +++ b/server/models/video/tag.ts | |||
@@ -48,11 +48,10 @@ export class TagModel extends Model<TagModel> { | |||
48 | }, | 48 | }, |
49 | defaults: { | 49 | defaults: { |
50 | name: tag | 50 | name: tag |
51 | } | 51 | }, |
52 | transaction | ||
52 | } | 53 | } |
53 | 54 | ||
54 | if (transaction) query['transaction'] = transaction | ||
55 | |||
56 | const promise = TagModel.findOrCreate(query) | 55 | const promise = TagModel.findOrCreate(query) |
57 | .then(([ tagInstance ]) => tagInstance) | 56 | .then(([ tagInstance ]) => tagInstance) |
58 | tasks.push(promise) | 57 | tasks.push(promise) |