From d96481a0cfd6260b32fc84f69791ad9ab16ae997 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Tue, 14 May 2024 14:36:12 -0300 Subject: [PATCH] fix: remove duplicate streaming controller --- src/app.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 05a1c81e..d18420a6 100644 --- a/src/app.ts +++ b/src/app.ts @@ -120,7 +120,6 @@ app.use('/nodeinfo/*', logger(debug)); app.use('/oauth/*', logger(debug)); app.get('/api/v1/streaming', streamingController); -app.get('/api/v1/streaming/', streamingController); app.get('/relay', relayController); app.use('*', csp(), cors({ origin: '*', exposeHeaders: ['link'] }), auth19, auth98(), storeMiddleware);