On link tap compare title path with actual link instead of hostname

pull/190/head
Dimitris Pappas 5 years ago
parent 522af0c756
commit 86d91b6ee3

@ -6231,7 +6231,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
grpDifferent.setVisibility(uri.getHost() == null || grpDifferent.setVisibility(uri.getHost() == null ||
uriTitle == null || uriTitle.getHost() == null || uriTitle == null || uriTitle.getHost() == null ||
uriTitle.getHost().equalsIgnoreCase(uri.getHost()) uriTitle.getPath().equalsIgnoreCase(uri.getPath())
? View.GONE : View.VISIBLE); ? View.GONE : View.VISIBLE);
boolean disconnect_links = prefs.getBoolean("disconnect_links", true); boolean disconnect_links = prefs.getBoolean("disconnect_links", true);

Loading…
Cancel
Save