Skip to content

Commit 8e085da

Browse files
authored
Updated deeplink redirect to default login
This prevents the issue where failing the login will send you back to login, where the final URL will keep getting encoded.
1 parent 3cebfce commit 8e085da

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/DeepLinkModule/javasource/deeplink/actions/StartDeeplinkJava.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ private void serveLogin(IMxRuntimeRequest request,
329329
url = url.substring(1);
330330
}
331331
if (qs != null && !qs.equals("")) {
332+
qs = URLDecoder.decode(qs, "UTF-8");
332333
url = url + "?" + URLEncoder.encode(qs, "UTF-8");
333334
}
334335

0 commit comments

Comments
 (0)