@jitsi/js-utils
Advanced tools
Comparing version 2.1.2 to 2.1.3
{ | ||
"name": "@jitsi/js-utils", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "Utilities for Jitsi JS projects", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -247,7 +247,12 @@ import { | ||
this._backend.send({ | ||
type: MESSAGE_TYPE_REQUEST, | ||
data: request, | ||
id | ||
}); | ||
try { | ||
this._backend.send({ | ||
type: MESSAGE_TYPE_REQUEST, | ||
data: request, | ||
id | ||
}); | ||
} catch (error) { | ||
this._responseHandlers.delete(id); | ||
reject(error); | ||
} | ||
}); | ||
@@ -254,0 +259,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
135270
2719