From ee18bce964711e9dabd3f851966b517b6cb80e9c Mon Sep 17 00:00:00 2001 From: JRoberts <8711996+jr-simplex@users.noreply.github.com> Date: Sat, 26 Nov 2022 18:52:08 +0400 Subject: [PATCH] mobile: change link to servers --- .../java/chat/simplex/app/views/usersettings/SMPServersView.kt | 2 +- apps/ios/Shared/Views/UserSettings/SMPServersView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/SMPServersView.kt b/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/SMPServersView.kt index 9ec28d0bde..5cde3e2ace 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/SMPServersView.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/views/usersettings/SMPServersView.kt @@ -223,7 +223,7 @@ private fun HowToButton() { SettingsActionItem( Icons.Outlined.OpenInNew, stringResource(R.string.how_to_use_your_servers), - { uriHandler.openUri("https://github.com/simplex-chat/simplexmq#using-smp-server-and-smp-agent") }, + { uriHandler.openUri("https://github.com/simplex-chat/simplex-chat/blob/stable/docs/SERVER.md") }, textColor = MaterialTheme.colors.primary, iconColor = MaterialTheme.colors.primary ) diff --git a/apps/ios/Shared/Views/UserSettings/SMPServersView.swift b/apps/ios/Shared/Views/UserSettings/SMPServersView.swift index 66e807b886..6f4755d136 100644 --- a/apps/ios/Shared/Views/UserSettings/SMPServersView.swift +++ b/apps/ios/Shared/Views/UserSettings/SMPServersView.swift @@ -9,7 +9,7 @@ import SwiftUI import SimpleXChat -private let howToUrl = URL(string: "https://github.com/simplex-chat/simplexmq#using-smp-server-and-smp-agent")! +private let howToUrl = URL(string: "https://github.com/simplex-chat/simplex-chat/blob/stable/docs/SERVER.md")! struct SMPServersView: View { @EnvironmentObject private var m: ChatModel