Skip to content

Commit

Permalink
Fix sad rebasing mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Aug 31, 2023
1 parent 4f77d99 commit 7620e85
Showing 1 changed file with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -623,22 +623,10 @@ export default class AudioVideoSegmentBuffer extends SegmentBuffer {
* difficult to enforce.
* @param {Object} data
*/
<<<<<<< HEAD
function assertPushedDataIsBufferSource(
pushedData : IPushChunkInfos<unknown>
) : asserts pushedData is IPushChunkInfos<BufferSource> {
if (__ENVIRONMENT__.CURRENT_ENV as number === __ENVIRONMENT__.PRODUCTION as number) {
||||||| 700a3d067
function assertPushedDataIsBufferSource(
pushedData : IPushChunkInfos<unknown>
) : asserts pushedData is IPushChunkInfos<BufferSource> {
if (__ENVIRONMENT__.CURRENT_ENV === __ENVIRONMENT__.PRODUCTION as number) {
=======
function assertDataIsBufferSource(
data : unknown
) : asserts data is BufferSource {
if (__ENVIRONMENT__.CURRENT_ENV === __ENVIRONMENT__.PRODUCTION as number) {
>>>>>>> refs/rewritten/canalplus-misc-declareInitSegment
if (__ENVIRONMENT__.CURRENT_ENV as number === __ENVIRONMENT__.PRODUCTION as number) {
return;
}
if (
Expand Down

0 comments on commit 7620e85

Please sign in to comment.