Skip to content

Commit

Permalink
fix(FEC-13123): replace travis with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
giladna authored May 8, 2023
1 parent 2764a26 commit 5a35881
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/hls-adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,21 @@ export default class HlsAdapter extends BaseMediaSourceAdapter {
_hls: any;

/**
* last recover date from decoding error
* Last recover date from decoding error
* @type {number}
* @private
*/
_recoverDecodingErrorDate: number;

/**
* last recover date from audio swap codec operation
* Last recover date from audio swap codec operation
* @type {number}
* @private
*/
_recoverSwapAudioCodecDate: number;

/**
* indicate if external redirect was performed
* Indicates if external redirect was performed
* @type {boolean}
* @private
*/
Expand All @@ -99,7 +99,7 @@ export default class HlsAdapter extends BaseMediaSourceAdapter {
_loadPromise: ?Promise<Object>;

/**
* the _loadPromise handlers
* The _loadPromise handlers
* @member {{resolve: (result: Promise<R> | R) => void, reject: (error: any) => void}} - _loadPromiseHandlers
* @type {{resolve: (result: Promise<R> | R) => void, reject: (error: any) => void}}
* @private
Expand All @@ -114,7 +114,7 @@ export default class HlsAdapter extends BaseMediaSourceAdapter {
*/
_playerTracks: Array<Track> = [];
/**
* stream start time in seconds
* Stream start time in seconds
* @type {?number}
* @private
*/
Expand Down

0 comments on commit 5a35881

Please sign in to comment.