Fix phrase in factcheck toast.

This commit is contained in:
John Preston 2024-05-24 18:24:59 +04:00
parent 7194781bb8
commit 1d3110228d
1 changed files with 2 additions and 2 deletions

View File

@ -207,9 +207,9 @@ void Factchecks::save(
save(itemId, std::move(text), [=](QString error) {
show->showToast(!error.isEmpty()
? error
: wasEmpty
? tr::lng_factcheck_remove_done(tr::now)
: textEmpty
? tr::lng_factcheck_remove_done(tr::now)
: wasEmpty
? tr::lng_factcheck_add_done(tr::now)
: tr::lng_factcheck_edit_done(tr::now));
});