Check if there are URLs in that message

Esse commit está contido em:
tastytea 2018-05-11 07:24:03 +02:00
commit e9e16f96d8
Assinado por: tastytea
ID da chave GPG: 59346E0EA35C67E5
4 arquivos alterados com 17 adições e 7 exclusões

Ver arquivo

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

Ver arquivo

@ -11,7 +11,7 @@ mention the bot account (@expandurl@botsin.space for example).
* C++ compiler (tested: gcc 6.4, clang 5.0)
* [cmake](https://cmake.org/) (tested: 3.9.6)
* [curlpp](http://www.curlpp.org/) (tested: 0.8.4)
* [mastodon-cpp](https://github.com/tastytea/mastodon-cpp) (at least: 0.12.0)
* [mastodon-cpp](https://github.com/tastytea/mastodon-cpp) (at least: 0.12.1)
## Get sourcecode

Ver arquivo

@ -95,14 +95,24 @@ int main(int argc, char *argv[])
{
message += url + " \n";
}
if (listener.send_reply(notif.status(), message))
if (!message.empty())
{
cout << "Sent reply: " << message;
message = '@' + notif.status().account().acct() +
' ' + message;
if (listener.send_reply(notif.status(), message))
{
cout << "Sent reply: " << message;
}
else
{
cerr << "ERROR: could not send reply to " <<
notif.status().id() << '\n';
}
}
else
{
cerr << "ERROR: could not send reply to " <<
notif.status().id() << '\n';
listener.send_reply(notif.status(),
"I couldn't find an URL in the message you replied to. 😞");
}
}
}

Ver arquivo

@ -131,7 +131,7 @@ const bool Listener::send_reply(const Easy::Status &status,
{
{ "in_reply_to_id", { id } },
{ "visibility", { strvisibility } },
{ "status", { '@' + status.account().acct() + ' ' + message } }
{ "status", { message } }
};
if (status.sensitive())