aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/pods.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/api/pods.ts')
-rw-r--r--server/controllers/api/pods.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/pods.ts b/server/controllers/api/pods.ts
index ec94efc35..804aa0659 100644
--- a/server/controllers/api/pods.ts
+++ b/server/controllers/api/pods.ts
@@ -83,6 +83,6 @@ function removeFriendController (req: express.Request, res: express.Response, ne
83 const pod = res.locals.pod as PodInstance 83 const pod = res.locals.pod as PodInstance
84 84
85 removeFriend(pod) 85 removeFriend(pod)
86 .then(() => (res.type('json').status(204).end())) 86 .then(() => res.type('json').status(204).end())
87 .catch(err => next(err)) 87 .catch(err => next(err))
88} 88}