From f29935af59910ef4b940ad0a656efda865346942 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Tue, 14 Nov 2023 13:03:14 +0100 Subject: [PATCH] Fix build :facepalm: Commit 6.000! --- .../MastodonSDK/Mastodon+API+Subscriptions+Policy.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MastodonSDK/Sources/MastodonCore/Extension/MastodonSDK/Mastodon+API+Subscriptions+Policy.swift b/MastodonSDK/Sources/MastodonCore/Extension/MastodonSDK/Mastodon+API+Subscriptions+Policy.swift index 78d7f2e81..3e604e23a 100644 --- a/MastodonSDK/Sources/MastodonCore/Extension/MastodonSDK/Mastodon+API+Subscriptions+Policy.swift +++ b/MastodonSDK/Sources/MastodonCore/Extension/MastodonSDK/Mastodon+API+Subscriptions+Policy.swift @@ -13,10 +13,10 @@ import MastodonLocalization extension Mastodon.API.Subscriptions.Policy { public var title: String { switch self { - case .all: return L10n.Scene.Settings.Section.Notifications.Trigger.anyone - case .follower: return L10n.Scene.Settings.Section.Notifications.Trigger.follower - case .followed: return L10n.Scene.Settings.Section.Notifications.Trigger.follow - case .none, ._other: return L10n.Scene.Settings.Section.Notifications.Trigger.noone + case .all: return L10n.Scene.Settings.Notifications.Policy.anyone + case .follower: return L10n.Scene.Settings.Notifications.Policy.followers + case .followed: return L10n.Scene.Settings.Notifications.Policy.follow + case .none, ._other: return L10n.Scene.Settings.Notifications.Policy.noone } } }