From 3e7cb443fa203fbac03939202e3301be786fc08e Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 22 Nov 2022 11:39:47 -0500 Subject: [PATCH] Correct post content type warning Hometown does not support formatting --- Tusker/Screens/Preferences/AdvancedPrefsView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Screens/Preferences/AdvancedPrefsView.swift b/Tusker/Screens/Preferences/AdvancedPrefsView.swift index 4fc68ca1..bac9e53f 100644 --- a/Tusker/Screens/Preferences/AdvancedPrefsView.swift +++ b/Tusker/Screens/Preferences/AdvancedPrefsView.swift @@ -23,7 +23,7 @@ struct AdvancedPrefsView : View { } var formattingFooter: some View { - var s: AttributedString = "This option is only supported with Pleroma and some compatible Mastodon instances (such as Glitch or Hometown).\n" + var s: AttributedString = "This option is only supported with Pleroma and some compatible Mastodon instances (such as Glitch).\n" if let account = LocalData.shared.getMostRecentAccount() { let mastodonController = MastodonController.getForAccount(account) // shouldn't need to load the instance here, because loading it is kicked off my the scene delegate