diff options
author | Chocobozzz <me@florianbigard.com> | 2022-07-29 10:32:56 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-07-29 10:32:56 +0200 |
commit | 5a9a56b78f6a62b3241f0dff1b8685001a3b3a1d (patch) | |
tree | c290f24a6b05dcb57387ad984b51de80f353c56f /shared/models | |
parent | 37b1d97f226aa83f47cb27eae00f2d2821759457 (diff) | |
download | PeerTube-5a9a56b78f6a62b3241f0dff1b8685001a3b3a1d.tar.gz PeerTube-5a9a56b78f6a62b3241f0dff1b8685001a3b3a1d.tar.zst PeerTube-5a9a56b78f6a62b3241f0dff1b8685001a3b3a1d.zip |
Prevent error on highlighted thread
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/server/server-error-code.enum.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/models/server/server-error-code.enum.ts b/shared/models/server/server-error-code.enum.ts index 115421d4d..0e70ea0a7 100644 --- a/shared/models/server/server-error-code.enum.ts +++ b/shared/models/server/server-error-code.enum.ts | |||
@@ -37,7 +37,9 @@ export const enum ServerErrorCode { | |||
37 | * A torrent should have at most one correct video file. Any more and we will | 37 | * A torrent should have at most one correct video file. Any more and we will |
38 | * not be able to choose automatically. | 38 | * not be able to choose automatically. |
39 | */ | 39 | */ |
40 | INCORRECT_FILES_IN_TORRENT = 'incorrect_files_in_torrent' | 40 | INCORRECT_FILES_IN_TORRENT = 'incorrect_files_in_torrent', |
41 | |||
42 | COMMENT_NOT_ASSOCIATED_TO_VIDEO = 'comment_not_associated_to_video' | ||
41 | } | 43 | } |
42 | 44 | ||
43 | /** | 45 | /** |