Skip to content

Commit 7274541

Browse files
authored
Fix typo in AWSMobileClient (#2841)
From a customer conversation; I'm guessing that this should be `without HostedUI` because the if condition is `if (hostedUIJSON == null)`.
1 parent 8d645e2 commit 7274541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws-android-sdk-mobile-client/src/main/java/com/amazonaws/mobile/client/AWSMobileClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3271,7 +3271,7 @@ private Runnable _showSignIn(final Activity callingActivity,
32713271
return new Runnable() {
32723272
@Override
32733273
public void run() {
3274-
callback.onError(new Exception("showSignIn called with HostedUI options in awsconfiguration.json"));
3274+
callback.onError(new Exception("showSignIn called without HostedUI options in awsconfiguration.json"));
32753275
}
32763276
};
32773277
}

0 commit comments

Comments
 (0)