# HG changeset patch # User Milka Kuzminski # Date 2021-03-25 22:15:48 # Node ID 7c6563e61cc53e4f4117036835e9ab4e91f8d680 # Parent 23c030e17827a6da93ed8adf785dc933cc170f95 clone-uri: fixed the problems with key mismatch that caused errors on summary page. diff --git a/rhodecode/lib/utils2.py b/rhodecode/lib/utils2.py --- a/rhodecode/lib/utils2.py +++ b/rhodecode/lib/utils2.py @@ -594,6 +594,9 @@ def credentials_filter(uri): :param uri: """ import urlobject + if isinstance(uri, rhodecode.lib.encrypt.InvalidDecryptedValue): + return 'InvalidDecryptionKey' + url_obj = urlobject.URLObject(cleaned_uri(uri)) url_obj = url_obj.without_password().without_username()