diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-24 13:07:33 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-24 13:38:39 +0200 |
commit | e5565833f62b97f62ea75eba5b479963ae78b873 (patch) | |
tree | 835793ce464f9666b0ceae79f3d278cc4e007b32 /server/models/video | |
parent | d1a63fc7ac58a1db00d8ca4f43aadba02eb9b084 (diff) | |
download | PeerTube-e5565833f62b97f62ea75eba5b479963ae78b873.tar.gz PeerTube-e5565833f62b97f62ea75eba5b479963ae78b873.tar.zst PeerTube-e5565833f62b97f62ea75eba5b479963ae78b873.zip |
Improve redundancy: add 'min_lifetime' configuration
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-file.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/models/video/video-file.ts b/server/models/video/video-file.ts index 0907ea569..0887a3738 100644 --- a/server/models/video/video-file.ts +++ b/server/models/video/video-file.ts | |||
@@ -106,4 +106,10 @@ export class VideoFileModel extends Model<VideoFileModel> { | |||
106 | return results.length === 1 | 106 | return results.length === 1 |
107 | }) | 107 | }) |
108 | } | 108 | } |
109 | |||
110 | hasSameUniqueKeysThan (other: VideoFileModel) { | ||
111 | return this.fps === other.fps && | ||
112 | this.resolution === other.resolution && | ||
113 | this.videoId === other.videoId | ||
114 | } | ||
109 | } | 115 | } |