From 5656bc1da7267e2f2c65b8dd9053af94c9008796 Mon Sep 17 00:00:00 2001 From: ykyivskyi-gd Date: Fri, 25 Jun 2021 16:38:15 +0300 Subject: [PATCH] fixed url schema replacing; --- FlowCryptCommon/Extensions/URLExtension.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlowCryptCommon/Extensions/URLExtension.swift b/FlowCryptCommon/Extensions/URLExtension.swift index 7accb961a..b5b75dca9 100644 --- a/FlowCryptCommon/Extensions/URLExtension.swift +++ b/FlowCryptCommon/Extensions/URLExtension.swift @@ -15,7 +15,7 @@ public extension URL { let urlString = self.absoluteString let sharedDocumentUrlString = urlString.replacingOccurrences( of: scheme, - with: "shareddocuments://" + with: "shareddocuments" ) return URL(string: sharedDocumentUrlString)