remove unused block/unblock toast

pull/1023/head
Ryan ZHAO 7 months ago
parent 263844daba
commit 9b676a8083

@ -882,21 +882,11 @@ public class ConversationViewModel: OWSAudioPlayerDelegate, NavigatableStateHold
let threadId: String = self.threadId
let displayName: String = self._threadData.wrappedValue.displayName
Storage.shared.writeAsync(
updates: { db in
try Contact
.filter(id: threadId)
.updateAllAndConfig(db, Contact.Columns.isBlocked.set(to: false))
},
completion: { [weak self] _, _ in
self?.showToast(
text: "blockUnblockedUser"
.put(key: "name", value: displayName)
.localized(),
backgroundColor: .backgroundSecondary
)
}
)
Storage.shared.writeAsync { db in
try Contact
.filter(id: threadId)
.updateAllAndConfig(db, Contact.Columns.isBlocked.set(to: false))
}
}
public func expandReactions(for interactionId: Int64) {

@ -832,29 +832,13 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
) {
guard oldBlockedState != isBlocked else { return }
dependencies.storage.writeAsync(
updates: { db in
try Contact
.filter(id: threadId)
.updateAllAndConfig(
db,
Contact.Columns.isBlocked.set(to: isBlocked)
)
},
completion: { [weak self] _, _ in
self?.showToast(
text: (
isBlocked ?
"blockBlockedUser"
.put(key: "name", value: displayName)
.localized() :
"blockUnblockedUser"
.put(key: "name", value: displayName)
.localized()
),
backgroundColor: .backgroundSecondary
dependencies.storage.writeAsync { db in
try Contact
.filter(id: threadId)
.updateAllAndConfig(
db,
Contact.Columns.isBlocked.set(to: isBlocked)
)
}
)
}
}
}

Loading…
Cancel
Save