diff options
author | Benjamin Bouvier <public@benj.me> | 2018-01-07 14:48:10 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-07 14:48:10 +0100 |
commit | 57a49263e48739c31cd339730ac4cb24e3d5d723 (patch) | |
tree | 520de9caa84113e704b39ae3b6f068a4fca7a66d /server/controllers/api/videos | |
parent | cbca00dfc14fe47260e8d081f4ed0bec7c66fd09 (diff) | |
download | PeerTube-57a49263e48739c31cd339730ac4cb24e3d5d723.tar.gz PeerTube-57a49263e48739c31cd339730ac4cb24e3d5d723.tar.zst PeerTube-57a49263e48739c31cd339730ac4cb24e3d5d723.zip |
A few updates for the watch video view (#181)
* Fixes #156: Filter out the video being watched from the list of other videos of the same author;
* Fixes #167: in the video view, hide the author's domain when it's from the current host;
* Fixes #171: Allow undoing a like/dislike;
Diffstat (limited to 'server/controllers/api/videos')
-rw-r--r-- | server/controllers/api/videos/rate.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/controllers/api/videos/rate.ts b/server/controllers/api/videos/rate.ts index b470f27f6..a7bd570eb 100644 --- a/server/controllers/api/videos/rate.ts +++ b/server/controllers/api/videos/rate.ts | |||
@@ -62,7 +62,6 @@ async function rateVideo (req: express.Request, res: express.Response) { | |||
62 | await previousRate.destroy({ transaction: t }) | 62 | await previousRate.destroy({ transaction: t }) |
63 | } else { // Update previous rate | 63 | } else { // Update previous rate |
64 | previousRate.type = rateType | 64 | previousRate.type = rateType |
65 | |||
66 | await previousRate.save({ transaction: t }) | 65 | await previousRate.save({ transaction: t }) |
67 | } | 66 | } |
68 | } else if (rateType !== 'none') { // There was not a previous rate, insert a new one if there is a rate | 67 | } else if (rateType !== 'none') { // There was not a previous rate, insert a new one if there is a rate |