From 82a6046620b264c295ec6a0d34e37dbcde33f83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Mon, 12 May 2025 17:07:40 -0700 Subject: [PATCH] =?UTF-8?q?Re-enable=20note=20zaps=20=E2=9A=A1=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's go! Changelog-Changed: Re-enabled note zaps as permitted by the new App Store guidelines Closes: https://github.com/damus-io/damus/issues/3016 Signed-off-by: Daniel D’Aquino --- damus/Models/UserSettingsStore.swift | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/damus/Models/UserSettingsStore.swift b/damus/Models/UserSettingsStore.swift index 89030b4d..860b53cc 100644 --- a/damus/Models/UserSettingsStore.swift +++ b/damus/Models/UserSettingsStore.swift @@ -174,8 +174,12 @@ class UserSettingsStore: ObservableObject { var truncate_timeline_text: Bool /// Nozaps mode gimps note zapping to fit into apple's content-tipping guidelines. It can not be configurable to end-users on the app store - @Setting(key: "nozaps", default_value: true) - var nozaps: Bool + /// + /// Update 2025-05-12: This can be re-enabled 🥳. See https://github.com/damus-io/damus/issues/3016 + // @Setting(key: "nozaps", default_value: true) + var nozaps: Bool { + return false + } @Setting(key: "truncate_mention_text", default_value: true) var truncate_mention_text: Bool