damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit dff5987d3c323307406336b718d7ffd4a959c663
parent bfffd63dab4d83852fc57e06d441d2f9157b803f
Author: William Casarin <jb55@jb55.com>
Date:   Tue,  9 May 2023 18:21:26 -0700

settings: mark UserSettings as changed in KeychainStorage properties

Maybe this isn't strictly needed at the moment, but to remain consistent
with the Settings and StringSettings property wrapper we will do this.

Diffstat:
Mdamus/Util/KeychainStorage.swift | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/damus/Util/KeychainStorage.swift b/damus/Util/KeychainStorage.swift @@ -64,6 +64,8 @@ import Security _ = SecItemDelete(query) } + + UserSettingsStore.shared!.objectWillChange.send() } }