This commit is contained in:
M66B
2023-02-03 07:39:36 +01:00
parent 256ea4ac27
commit 741b38ba8f
2 changed files with 2 additions and 2 deletions

View File

@@ -5989,7 +5989,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
String chost = FragmentDialogOpenLink.getConfirmHost(uri);
boolean sanitize_links = prefs.getBoolean("sanitize_links", false);
boolean confirm_link = (chost != null && prefs.getBoolean(chost + ".confirm_link", true));
boolean confirm_link = (chost == null || prefs.getBoolean(chost + ".confirm_link", true));
if (always_confirm || sanitize_links || (confirm_links && confirm_link)) {
Bundle args = new Bundle();
args.putParcelable("uri", uri);