Trim livestream URL

Trims whitespaces from the livestream URL
This commit is contained in:
Sean 2020-11-27 16:58:58 +01:00
parent 96f96f09ee
commit 00066806d6
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ export class VjsPlayerComponent implements OnInit, OnDestroy {
@Input()
public set videoUrl(value: string) {
this._videoUrl = value;
this._videoUrl = value.trim();
this.checkVideoUrl();
}