Skip to content
Snippets Groups Projects
Commit b507eecd authored by Sébastien Blin's avatar Sébastien Blin
Browse files

currentconversation: support new error code

Change-Id: I391080b2de79414f04c5dd7b00b1d0d0865b3550
parent 30d10c7d
No related branches found
Tags beta/202402071743
No related merge requests found
daemon @ 7ef77352
Subproject commit 6aa9751d201e533a988b06033b5d0945a775317c
Subproject commit 7ef7735297179bca2249bf757db7a88ce4dd5807
......@@ -324,12 +324,13 @@ CurrentConversation::updateErrors(const QString& convId)
if (code == 1) {
newErrors.append(tr("An error occurred while fetching this repository"));
} else if (code == 2) {
newErrors.append(tr("The conversation's mode is un-recognized"));
newErrors.append(tr("Unrecognized conversation mode"));
} else if (code == 3) {
newErrors.append(tr("An invalid message was detected"));
} else if (code == 4) {
newErrors.append(
tr("Not enough authorization for updating conversation's infos"));
newErrors.append(tr("Not authorized to update conversation information"));
} else if (code == 5) {
newErrors.append(tr("An error occurred while committing a new message"));
} else {
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment