Skip to content

Commit

Permalink
Merge pull request #1446 from dimagi/dv/session_wrapper_mobile_fix
Browse files Browse the repository at this point in the history
Restored 3-input constructor for SessionWrapper (to preserve mobile b…
  • Loading branch information
shubham1g5 authored Oct 21, 2024
2 parents 50aeeca + c47639f commit 7cc0932
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/commcare/modern/session/SessionWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public SessionWrapper(CommCareSession session, CommCarePlatform platform, UserSa
public SessionWrapper(CommCareSession session, CommCarePlatform platform, UserSandbox sandbox, String windowWidth) {
this(session, platform, sandbox, null, windowWidth);
}

public SessionWrapper(CommCareSession session, CommCarePlatform platform, UserSandbox sandbox) {
this(session, platform, sandbox, null, null);
}

public SessionWrapper(CommCarePlatform platform, UserSandbox sandbox) {
super(platform);
Expand Down

0 comments on commit 7cc0932

Please sign in to comment.