Fix build break oops

This commit is contained in:
Christian Benincasa
2024-03-29 14:12:18 -04:00
parent 3f6555658d
commit ed3700a9ab
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ services:
ports:
- '5173:5173'
- '8000:8000'
user: $USER:$GID
runtime: nvidia
volumes:
- ../:/tunarr

View File

@@ -774,7 +774,7 @@ export const videoRouter: RouterPluginAsyncCallback = async (fastify) => {
}
done();
})
.put('/streams/*', async (req, res) => {
.put('/streams/*', async (_, res) => {
await res.send(200);
});