Skip to content

Commit

Permalink
The client TimeZone was not being seted in submit context
Browse files Browse the repository at this point in the history
Issue: 107049
  • Loading branch information
iroqueta committed Mar 27, 2024
1 parent cc12943 commit d4ac59a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ public void afterGetConnection(ModelContext modelContext, int handle, AbstractDa
public ModelContext submitCopy(ModelContext modelContext) {
ModelContext newContext = new ModelContext(modelContext);
newContext.setHttpContext(new HttpContextNull());
newContext.setCurrentTimeZone(modelContext.getClientTimeZone());
initializeSubmitSession(modelContext, newContext);
HttpContext ctx = (HttpContext) modelContext.getHttpContext();
if (ctx != null)
Expand Down

0 comments on commit d4ac59a

Please sign in to comment.