Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
7e3dc7cc
Commit
7e3dc7cc
authored
Jan 06, 2022
by
Piotr Gawron
Browse files
Merge branch '1623-load-failed' into 'devel_16.0.x'
Resolve "MINERVANET - Error Report 358" See merge request
!1408
parents
217fde74
bc864bfc
Pipeline
#51105
failed with stage
in 16 minutes and 12 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
7e3dc7cc
...
...
@@ -10,6 +10,9 @@ minerva (16.0.6) stable; urgency=medium
*
Bug
fix
:
log4j2
updated
to
address
security
issue
CVE
-
2021
-
44832
*
Bug
fix
:
multiple
conversion
between
formats
SBGN
->
SBML
->
SBGN
->
SBML
could
crash
if
in
the
meantime
there
were
additional
elements
added
(#
1617
)
*
Bug
fix
:
when
there
is
problem
with
loading
data
from
minerva
(
"Load failed"
)
suggestion
about
retrying
before
submitting
error
report
is
provided
(#
1623
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Thu
,
16
Dec
2021
11
:
00
:
00
+
0200
...
...
frontend-js/src/main/js/GuiConnector.js
View file @
7e3dc7cc
...
...
@@ -431,7 +431,7 @@ GuiConnector.prototype.alert = function (error, redirectIfSecurityError) {
* @returns {Object}
*/
GuiConnector
.
prototype
.
getErrorMessageForError
=
function
(
error
)
{
if
(
error
instanceof
NetworkError
&&
error
.
message
===
'
Failed to fetch
'
)
{
if
(
error
instanceof
NetworkError
&&
(
error
.
message
===
'
Failed to fetch
'
||
error
.
message
===
'
Load failed
'
)
)
{
return
{
showReport
:
false
,
message
:
"
There was a problem with fetching data from minerva server.
"
+
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment