Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
9f4d7b76
Commit
9f4d7b76
authored
Mar 22, 2019
by
Piotr Gawron
Browse files
project udate doesn't mess up with cached data
parent
bb325c88
Pipeline
#9429
passed with stage
in 8 minutes and 45 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
9f4d7b76
...
...
@@ -10,6 +10,8 @@ minerva (12.2.0~beta.3) unstable; urgency=medium
compartments
(#
736
)
*
Bug
fix
:
migration
scripts
are
compatibile
with
postgres
9.3
version
that
is
default
on
Ubuntu
14
(#
762
)
*
Bug
fix
:
after
project
was
modified
it
could
happen
that
user
was
unable
to
upload
data
overlay
(#
752
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Wed
,
6
Mar
2019
14
:
00
:
00
+
0200
...
...
service/src/main/java/lcsb/mapviewer/services/impl/ProjectService.java
View file @
9f4d7b76
...
...
@@ -1207,15 +1207,6 @@ public class ProjectService implements IProjectService {
@Override
public
void
updateProject
(
Project
project
,
String
token
)
throws
SecurityException
{
projectDao
.
update
(
project
);
if
(
token
!=
null
)
{
Model
model
=
modelService
.
getLastModelByProjectId
(
project
.
getProjectId
(),
token
);
if
(
model
!=
null
)
{
// TODO it's a hack to prevent lazy initialization of the project
project
.
getLayouts
();
project
.
getOverviewImages
();
model
.
setProject
(
project
);
}
}
}
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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