Skip to content

Commit

Permalink
fix: typos caused wrong objects to be serialized
Browse files Browse the repository at this point in the history
  • Loading branch information
birme committed May 13, 2023
1 parent 32550ba commit 46837c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class HLSVod {
this.videoSequencesCount = 0;
this.audioSequencesCount = 0;
this.defaultAudioGroupAndLang = null;
this.SubtitleSequencesCount = 0;
this.subtitleSequencesCount = 0;
this.mediaStartExcessTime = 0;
this.audioCodecsMap = {};
}
Expand Down Expand Up @@ -113,7 +113,7 @@ class HLSVod {
subtitleSliceEndpoint: this.subtitleSliceEndpoint,
videoSequencesCount: this.videoSequencesCount,
audioSequencesCount: this.audioSequencesCount,
subtitleSequencesCount: this.subtitleSegments,
subtitleSequencesCount: this.subtitleSequencesCount,
mediaStartExcessTime: this.mediaStartExcessTime,
audioCodecsMap: this.audioCodecsMap,
};
Expand Down

0 comments on commit 46837c0

Please sign in to comment.