From 960e338f4847f3587c7f752443fdf49276c690ed Mon Sep 17 00:00:00 2001 From: Daniel Fernandes <711733+daferna@users.noreply.github.com> Date: Tue, 3 May 2022 01:45:54 -0700 Subject: [PATCH] Fixes status-im#13263 Signed-off-by: andrey --- src/status_im/ens/core.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/ens/core.cljs b/src/status_im/ens/core.cljs index 56efe508f8..e33f50461a 100644 --- a/src/status_im/ens/core.cljs +++ b/src/status_im/ens/core.cljs @@ -138,7 +138,7 @@ #(re-frame/dispatch [::name-resolved username (cond (not public-key) :owned - (string/ends-with? % "0000000000000000000000000000000000000000000000000000000000000000") + (and (string/ends-with? % "0000000000000000000000000000000000000000000000000000000000000000") (not custom-domain?)) :invalid-ens (= % public-key) :connected :else :connected-with-different-key)