feat: Saving and displaying movie play-state, progress etc.

This commit is contained in:
Aleksi Lassila
2024-12-14 20:32:41 +02:00
parent dfffd01e7c
commit a3866ada6b
23 changed files with 503 additions and 113 deletions

View File

@@ -281,7 +281,10 @@ export class SourcesController {
.catch((e) => {
if (e === SourcePluginError.StreamNotFound) {
throw new NotFoundException('Stream not found');
} else throw new InternalServerErrorException();
} else {
console.error(e);
throw new InternalServerErrorException();
}
});
}