frontend: simplify playRecording method by bypassing authentication check

This commit is contained in:
juancarmore 2025-10-08 11:26:21 +02:00
parent 2a9ee30759
commit 78d3d36888

View File

@ -235,8 +235,8 @@ export class RecordingService {
* @param recordingId - The ID of the recording to play
*/
async playRecording(recordingId: string) {
const privateAccess = await this.authService.isUserAuthenticated();
const { url } = await this.generateRecordingUrl(recordingId, privateAccess);
// const privateAccess = await this.authService.isUserAuthenticated();
const { url } = await this.generateRecordingUrl(recordingId, false);
window.open(url, '_blank');
}