aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-19 14:22:38 +0100
committerChocobozzz <me@florianbigard.com>2017-12-19 14:22:38 +0100
commit54b38063249c0c903f13491eaa84f502f4dffe79 (patch)
tree9c3fa451f336e423eefd13ee38f47519d263cd57
parent0405ab52dc0f445b88f8de76e30d6e6719196023 (diff)
downloadPeerTube-54b38063249c0c903f13491eaa84f502f4dffe79.tar.gz
PeerTube-54b38063249c0c903f13491eaa84f502f4dffe79.tar.zst
PeerTube-54b38063249c0c903f13491eaa84f502f4dffe79.zip
Fix lint
-rw-r--r--server/lib/activitypub/send/send-create.ts2
-rw-r--r--server/lib/activitypub/share.ts2
-rw-r--r--server/middlewares/servers.ts4
3 files changed, 3 insertions, 5 deletions
diff --git a/server/lib/activitypub/send/send-create.ts b/server/lib/activitypub/send/send-create.ts
index 249dd91dc..27b03c45f 100644
--- a/server/lib/activitypub/send/send-create.ts
+++ b/server/lib/activitypub/send/send-create.ts
@@ -17,7 +17,7 @@ import {
17} from './misc' 17} from './misc'
18 18
19async function sendCreateVideo (video: VideoModel, t: Transaction) { 19async function sendCreateVideo (video: VideoModel, t: Transaction) {
20 if (video.privacy === VideoPrivacy.PRIVATE) return 20 if (video.privacy === VideoPrivacy.PRIVATE) return undefined
21 21
22 const byActor = video.VideoChannel.Account.Actor 22 const byActor = video.VideoChannel.Account.Actor
23 const videoObject = video.toActivityPubObject() 23 const videoObject = video.toActivityPubObject()
diff --git a/server/lib/activitypub/share.ts b/server/lib/activitypub/share.ts
index 386ae362a..294a6838d 100644
--- a/server/lib/activitypub/share.ts
+++ b/server/lib/activitypub/share.ts
@@ -6,7 +6,7 @@ import { VideoShareModel } from '../../models/video/video-share'
6import { sendVideoAnnounceToFollowers } from './send' 6import { sendVideoAnnounceToFollowers } from './send'
7 7
8async function shareVideoByServerAndChannel (video: VideoModel, t: Transaction) { 8async function shareVideoByServerAndChannel (video: VideoModel, t: Transaction) {
9 if (video.privacy === VideoPrivacy.PRIVATE) return 9 if (video.privacy === VideoPrivacy.PRIVATE) return undefined
10 10
11 const serverActor = await getServerActor() 11 const serverActor = await getServerActor()
12 12
diff --git a/server/middlewares/servers.ts b/server/middlewares/servers.ts
index 87bbe9fd7..e16bc4a86 100644
--- a/server/middlewares/servers.ts
+++ b/server/middlewares/servers.ts
@@ -1,9 +1,7 @@
1import 'express-validator'
2import * as express from 'express' 1import * as express from 'express'
2import 'express-validator'
3import { getHostWithPort } from '../helpers' 3import { getHostWithPort } from '../helpers'
4 4
5import { REMOTE_SCHEME } from '../initializers'
6
7function setBodyHostsPort (req: express.Request, res: express.Response, next: express.NextFunction) { 5function setBodyHostsPort (req: express.Request, res: express.Response, next: express.NextFunction) {
8 if (!req.body.hosts) return next() 6 if (!req.body.hosts) return next()
9 7