Better reply

This commit is contained in:
tastytea 2018-05-22 12:05:55 +02:00
parent 60336c84b2
commit 138a335047
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.7)
project (expandurl-mastodon
VERSION 0.5.4
VERSION 0.5.5
LANGUAGES CXX
)

View File

@ -95,7 +95,8 @@ int main(int argc, char *argv[])
{
if (!listener.send_reply(notif.status(), message))
{
cerr << "ERROR: could not send reply to " << id << '\n';
cerr << "ERROR: could not send reply to " << id <<
'\n';
}
}
else
@ -114,7 +115,8 @@ int main(int argc, char *argv[])
else
{
listener.send_reply(notif.status(),
"It seems that you didn't reply to a message?");
"I couldn't find the message you replied to. 😞 \n"
"Maybe the federation is a bit wonky at the moment.");
}
}
new_messages.clear();