diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-18 10:53:54 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-18 15:42:20 +0100 |
commit | f05a1c30c15d2ae35c11e241ca039a72eeb7d6ad (patch) | |
tree | 6d90c0de5dd3ad506e738d447e4f396951ed5624 /server/initializers/constants.ts | |
parent | 1174a8479ab9ee47b3305d668fe757435057a298 (diff) | |
download | PeerTube-f05a1c30c15d2ae35c11e241ca039a72eeb7d6ad.tar.gz PeerTube-f05a1c30c15d2ae35c11e241ca039a72eeb7d6ad.tar.zst PeerTube-f05a1c30c15d2ae35c11e241ca039a72eeb7d6ad.zip |
Don't show videos of remote instance after unfollow
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r-- | server/initializers/constants.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 7b63a9ccd..c10213890 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -283,7 +283,7 @@ const ACTIVITY_PUB = { | |||
283 | FETCH_PAGE_LIMIT: 100, | 283 | FETCH_PAGE_LIMIT: 100, |
284 | MAX_HTTP_ATTEMPT: 5, | 284 | MAX_HTTP_ATTEMPT: 5, |
285 | URL_MIME_TYPES: { | 285 | URL_MIME_TYPES: { |
286 | VIDEO: [ 'video/mp4', 'video/webm', 'video/ogg' ], // TODO: Merge with VIDEO_MIMETYPE_EXT | 286 | VIDEO: Object.keys(VIDEO_MIMETYPE_EXT), |
287 | TORRENT: [ 'application/x-bittorrent' ], | 287 | TORRENT: [ 'application/x-bittorrent' ], |
288 | MAGNET: [ 'application/x-bittorrent;x-scheme-handler/magnet' ] | 288 | MAGNET: [ 'application/x-bittorrent;x-scheme-handler/magnet' ] |
289 | }, | 289 | }, |