WIP: ban & delete toast

pull/1023/head
Ryan ZHAO 9 months ago
parent 77e9a1d29a
commit 394bd19c96

@ -2342,15 +2342,19 @@ extension ConversationVC:
receiveCompletion: { result in receiveCompletion: { result in
switch result { switch result {
case .finished: case .finished:
self?.viewModel.showToast( DispatchQueue.main.async { [weak self] in
text: "banUserBanned".localized(), self?.viewModel.showToast(
backgroundColor: .backgroundSecondary text: "banUserBanned".localized(),
) backgroundColor: .backgroundSecondary
)
}
case .failure: case .failure:
self?.viewModel.showToast( DispatchQueue.main.async { [weak self] in
text: "banErrorFailed".localized(), self?.viewModel.showToast(
backgroundColor: .backgroundSecondary text: "banErrorFailed".localized(),
) backgroundColor: .backgroundSecondary
)
}
} }
} }
) )
@ -2397,15 +2401,19 @@ extension ConversationVC:
receiveCompletion: { result in receiveCompletion: { result in
switch result { switch result {
case .finished: case .finished:
self?.viewModel.showToast( DispatchQueue.main.async { [weak self] in
text: "banUserBanned".localized(), self?.viewModel.showToast(
backgroundColor: .backgroundSecondary text: "banUserBanned".localized(),
) backgroundColor: .backgroundSecondary
)
}
case .failure: case .failure:
self?.viewModel.showToast( DispatchQueue.main.async { [weak self] in
text: "banErrorFailed".localized(), self?.viewModel.showToast(
backgroundColor: .backgroundSecondary text: "banErrorFailed".localized(),
) backgroundColor: .backgroundSecondary
)
}
} }
} }
) )

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save