Skip to content

Commit

Permalink
chore: Fix last issue with linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rafa8626 committed Jun 23, 2022
1 parent d0d6f32 commit 8903f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/media/hls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class HlsMedia extends Native {

#autoplay: boolean;

constructor(element: HTMLMediaElement, mediaSource: Source, autoplay = false, options?: unknown) {
constructor(element: HTMLMediaElement, mediaSource: Source, autoplay: boolean, options?: unknown) {
super(element, mediaSource);
this.#options = options || {};
this.element = element;
Expand Down

0 comments on commit 8903f27

Please sign in to comment.