Skip to content

Commit

Permalink
Merge pull request #33 from THEOplayer/bugfix/non-fatal-segmentnotfou…
Browse files Browse the repository at this point in the history
…nd-reporting

Bugfix/non fatal segmentnotfound reporting
  • Loading branch information
wvanhaevre authored Jul 25, 2024
2 parents 82d0b7f + f9d4d42 commit 44f840b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/cuddly-beds-pay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@theoplayer/conviva-connector-web": patch
---

Fixed an issue where the `segmentnotfound` event was reported as a fatal error.
2 changes: 1 addition & 1 deletion conviva/src/integration/ConvivaHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export class ConvivaHandler {
private readonly onSegmentNotFound = () => {
this.convivaVideoAnalytics?.reportPlaybackError(
'A Video Playback Failure has occurred: Segment not found',
Constants.ErrorSeverity.FATAL
Constants.ErrorSeverity.WARNING
);
};

Expand Down

0 comments on commit 44f840b

Please sign in to comment.