Fix problem with getting cloud storages in Firefox (#3733)

* fix

* Update CHANGELOG

* Increase version

* Fix incorrect link
main
Maria Khrustaleva 4 years ago committed by GitHub
parent cf8d0d3268
commit ecee80697d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed JSON transform issues in network requests (<https://github.com/openvinotoolkit/cvat/pull/3706>)
- Exception `DataCloneError: The object could not be cloned` (<https://github.com/openvinotoolkit/cvat/pull/3733>)
### Security

@ -1,6 +1,6 @@
{
"name": "cvat-core",
"version": "3.16.0",
"version": "3.16.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "cvat-core",
"version": "3.16.0",
"version": "3.16.1",
"description": "Part of Computer Vision Tool which presents an interface for client-side integration",
"main": "babel.config.js",
"scripts": {

@ -1,4 +1,4 @@
// Copyright (C) 2019-2020 Intel Corporation
// Copyright (C) 2019-2021 Intel Corporation
//
// SPDX-License-Identifier: MIT
@ -20,7 +20,6 @@ onmessage = (e) => {
.catch((error) => {
postMessage({
id: e.data.id,
error: error,
status: error.response.status,
responseData: error.response.data,
isSuccess: false,

@ -57,7 +57,6 @@
requests[e.data.id].resolve(e.data.responseData);
} else {
requests[e.data.id].reject({
error: e.data.error,
response: {
status: e.data.status,
data: e.data.responseData,
@ -839,7 +838,6 @@
);
} catch (errorData) {
throw generateError({
...errorData,
message: '',
response: {
...errorData.response,
@ -1256,7 +1254,6 @@
});
} catch (errorData) {
throw generateError({
...errorData,
message: '',
response: {
...errorData.response,

Loading…
Cancel
Save