diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-07-11 17:04:57 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-07-11 17:05:55 +0200 |
commit | 075f16caac5236cb04c98ae7b3a989766d764bb3 (patch) | |
tree | 9a30024aa771735a28d83d9a166033b82dbcaf60 /server/lib/friends.ts | |
parent | 4e979c3e1b81f4762025d9db3052b1f70774b3bb (diff) | |
download | PeerTube-075f16caac5236cb04c98ae7b3a989766d764bb3.tar.gz PeerTube-075f16caac5236cb04c98ae7b3a989766d764bb3.tar.zst PeerTube-075f16caac5236cb04c98ae7b3a989766d764bb3.zip |
Remove "function" in favor of () => {}
Diffstat (limited to 'server/lib/friends.ts')
-rw-r--r-- | server/lib/friends.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/lib/friends.ts b/server/lib/friends.ts index cbdc60441..6ed0da013 100644 --- a/server/lib/friends.ts +++ b/server/lib/friends.ts | |||
@@ -111,7 +111,7 @@ function quickAndDirtyUpdateVideoToFriends (qaduParam: QaduParam, transaction?: | |||
111 | function quickAndDirtyUpdatesVideoToFriends (qadusParams: QaduParam[], transaction: Sequelize.Transaction) { | 111 | function quickAndDirtyUpdatesVideoToFriends (qadusParams: QaduParam[], transaction: Sequelize.Transaction) { |
112 | const tasks = [] | 112 | const tasks = [] |
113 | 113 | ||
114 | qadusParams.forEach(function (qaduParams) { | 114 | qadusParams.forEach(qaduParams => { |
115 | tasks.push(quickAndDirtyUpdateVideoToFriends(qaduParams, transaction)) | 115 | tasks.push(quickAndDirtyUpdateVideoToFriends(qaduParams, transaction)) |
116 | }) | 116 | }) |
117 | 117 | ||
@@ -130,7 +130,7 @@ function addEventToRemoteVideo (eventParam: EventParam, transaction?: Sequelize. | |||
130 | function addEventsToRemoteVideo (eventsParams: EventParam[], transaction: Sequelize.Transaction) { | 130 | function addEventsToRemoteVideo (eventsParams: EventParam[], transaction: Sequelize.Transaction) { |
131 | const tasks = [] | 131 | const tasks = [] |
132 | 132 | ||
133 | eventsParams.forEach(function (eventParams) { | 133 | eventsParams.forEach(eventParams => { |
134 | tasks.push(addEventToRemoteVideo(eventParams, transaction)) | 134 | tasks.push(addEventToRemoteVideo(eventParams, transaction)) |
135 | }) | 135 | }) |
136 | 136 | ||
@@ -307,7 +307,7 @@ function getForeignPodsList (host: string) { | |||
307 | return new Promise< ResultList<FormatedPod> >((res, rej) => { | 307 | return new Promise< ResultList<FormatedPod> >((res, rej) => { |
308 | const path = '/api/' + API_VERSION + '/pods' | 308 | const path = '/api/' + API_VERSION + '/pods' |
309 | 309 | ||
310 | request.get(REMOTE_SCHEME.HTTP + '://' + host + path, function (err, response, body) { | 310 | request.get(REMOTE_SCHEME.HTTP + '://' + host + path, (err, response, body) => { |
311 | if (err) return rej(err) | 311 | if (err) return rej(err) |
312 | 312 | ||
313 | try { | 313 | try { |