Only normalize URIs when comparing
diff --git a/asn1crypto/x509.py b/asn1crypto/x509.py
index 428404c..938bb41 100644
--- a/asn1crypto/x509.py
+++ b/asn1crypto/x509.py
@@ -163,7 +163,7 @@
         if not isinstance(other, URI):
             return False
 
-        return iri_to_uri(self.native) == iri_to_uri(other.native)
+        return iri_to_uri(self.native, True) == iri_to_uri(other.native, True)
 
     def __unicode__(self):
         """