removed redundancy in error message

This commit is contained in:
tastytea 2018-05-29 19:15:53 +02:00
parent e528cf6baa
commit bf608f5145
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -317,7 +317,7 @@ const std::uint_fast64_t Listener::get_parent_id(const Easy::Notification &notif
} }
else else
{ {
syslog(LOG_WARNING, "Could not get ID of replied-to parent post"); syslog(LOG_WARNING, "Could not get ID of replied-to post");
std::this_thread::sleep_for(std::chrono::seconds(2)); std::this_thread::sleep_for(std::chrono::seconds(2));
} }
} }