diff --git a/MastodonSDK/Sources/MastodonCore/AppSecret.swift b/MastodonSDK/Sources/MastodonCore/AppSecret.swift index 9493e1c7d..de5875c55 100644 --- a/MastodonSDK/Sources/MastodonCore/AppSecret.swift +++ b/MastodonSDK/Sources/MastodonCore/AppSecret.swift @@ -9,7 +9,6 @@ import Foundation import CryptoKit import KeychainAccess import MastodonCommon -import ArkanaKeys public final class AppSecret { @@ -36,11 +35,11 @@ public final class AppSecret { init() { #if DEBUG - let keys = Keys.Debug() - self.notificationEndpoint = keys.notificationEndpoint + //let keys = Keys.Debug() + self.notificationEndpoint = "https://app.joinmastodon.org/relay-to/production" #else - let keys = Keys.Release() - self.notificationEndpoint = keys.notificationEndpoint + //let keys = Keys.Release() + self.notificationEndpoint = "https://app.joinmastodon.org/relay-to/production" #endif }