We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d39b56b commit ca3d95dCopy full SHA for ca3d95d
src/streaming/metrics/utils/DVBErrorsTranslator.js
@@ -90,6 +90,7 @@ function DVBErrorsTranslator(config) {
90
91
function handleHttpMetric(vo) {
92
if ((vo.responsecode === 0) || // connection failure - unknown
93
+ (vo.responsecode == null) || // Generated on .catch() and when uninitialised
94
(vo.responsecode >= 400) || // HTTP error status code
95
(vo.responsecode < 100) || // unknown status codes
96
(vo.responsecode >= 600)) { // unknown status codes
0 commit comments