From 69e12ec3376c2a8866e2e5a7a7f0dd582595ac2f Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Wed, 12 Oct 2022 20:13:03 -0700 Subject: [PATCH] remove www from qr link --- Meshtastic/Views/Settings/ShareChannels.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Settings/ShareChannels.swift b/Meshtastic/Views/Settings/ShareChannels.swift index 52c16ccc..b572e548 100644 --- a/Meshtastic/Views/Settings/ShareChannels.swift +++ b/Meshtastic/Views/Settings/ShareChannels.swift @@ -296,6 +296,6 @@ struct ShareChannels: View { } } let settingsString = try! channelSet.serializedData().base64EncodedString() - channelsUrl = ("https://www.meshtastic.org/e/#" + settingsString.base64ToBase64url()) + channelsUrl = ("https://meshtastic.org/e/#" + settingsString.base64ToBase64url()) } }