Add Widevine Plugin support
All checks were successful
ci / Image build (push) Successful in 2m10s
ci / Deployment (push) Successful in 5s

This commit is contained in:
Joris Bertomeu
2025-08-26 10:55:10 +02:00
parent 847c30b112
commit 86d89e7d1c

View File

@@ -90,14 +90,14 @@ export class AppComponent implements OnInit {
this.route.queryParams.subscribe(params => {
if (params['mpdUrl'] && params['keys'] && params['autoLoad']) {
this.preloadFromExtension(params['mpdUrl'], params['keys']);
// this.router.navigate([], {
// queryParams: {
// mpdUrl: null,
// keys: null,
// autoLoad: null
// },
// queryParamsHandling: 'merge'
// });
this.router.navigate([], {
queryParams: {
mpdUrl: null,
keys: null,
autoLoad: null
},
queryParamsHandling: 'merge'
});
}
});
}