Skip to content

Commit

Permalink
Preparing release 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
queue-it committed Sep 13, 2023
1 parent b84df99 commit b811d56
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ allprojects {
groupId = 'com.queue-it.androidsdk'
libraryName = 'com.queue_it.androidsdk'
libraryDescription = 'Android SDK to integrate with Queue-it'
libraryVersion = "2.1.4"
libraryVersion = "2.1.5"
organization = "Queue-it"
organizationUrl = "https://queue-it.com"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public boolean handleNavigationRequest(final String destinationUrlStr, WebView w

String navigationHost = destinationUri.getHost();
String queueHost = queue.getHost();
boolean isQueueItUrl = navigationHost != null && queueHost != null && queueHost.contains(navigationHost);
boolean isQueueItUrl = navigationHost != null && queueHost != null && queueHost.equals(navigationHost);
if (isQueueItUrl) {
boolean needsRewrite = QueueUrlHelper.urlUpdateNeeded(destinationUri, userId);
if (needsRewrite) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -491,5 +491,4 @@ protected void onSessionRestart() {
verify(webView).loadUrl(argument.capture());
assertEquals(expectedRewrittenUrl, argument.getValue());
}

}

0 comments on commit b811d56

Please sign in to comment.