未验证 提交 ecee8069 编写于 作者: M Maria Khrustaleva 提交者: GitHub

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

* fix

* Update CHANGELOG

* Increase version

* Fix incorrect link
上级 cf8d0d32
......@@ -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
......
{
"name": "cvat-core",
"version": "3.16.0",
"version": "3.16.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
......
{
"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": {
......
// 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,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册