Show correct error title and message.

Signed-off-by: Ivan Sein <ivan@nextcloud.com>
This commit is contained in:
Ivan Sein 2024-10-01 12:34:39 +02:00
Родитель 1baf457901
Коммит 34ea244845
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -237,8 +237,8 @@ struct UserStatusMessageSwiftUIView: View {
}
func triggerErrorAlert(title: String, message: String) {
errorAlertTitle = NSLocalizedString("Could not clear status message", comment: "")
errorAlertMessage = NSLocalizedString("Could not clear status message", comment: "")
errorAlertTitle = title
errorAlertMessage = message
showErrorAlert.toggle()
}