Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mjfelis committed Nov 11, 2024
1 parent 205f8e1 commit cb36b0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,12 @@ private Session getSession(UUID connectionId) {
session.setModel(defaultModel);
em.persist(session);

} else {
if (session.getModel() == null) {
this.getModels();
session.setModel(defaultModel);
session = em.merge(session);
}
}

return session;
Expand Down
Binary file not shown.

0 comments on commit cb36b0b

Please sign in to comment.