Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit 97ed7c9

Browse files
author
Sachin Maheshwari
committed
string concate
1 parent fc2d575 commit 97ed7c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/appirio/tech/core/service/identity/resource/UserResource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -910,12 +910,12 @@ public ApiResponse resendEmail(
910910
data.put("domain", getDomain());
911911
data.put("subDomain", "platform");
912912
data.put("path", "/onboard");
913-
data.put("redirectUrl", String.format("https%3A%2F%2Fplatform.%s.com%2Fonboard", getDomain()));
913+
data.put("redirectUrl", "https%3A%2F%2Fplatform."+getDomain()+".com%2Fonboard");
914914

915915
if (user.getRegSource() != null && user.getRegSource().matches("tcBusiness")) {
916916
data.put("subDomain", "connect");
917917
data.put("path", "/");
918-
data.put("redirectUrl", String.format("https%3A%2F%2Fconnect.%s.com%2/", getDomain()));
918+
data.put("redirectUrl", "https%3A%2F%2Fconnect."+getDomain()+".com%2F");
919919
}
920920

921921

0 commit comments

Comments
 (0)