Added warning if in_reply_to_id is not found

This commit is contained in:
tastytea 2018-05-27 01:32:35 +02:00
parent 0a380dbab4
commit 992f6373ab
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 2 additions and 1 deletions

View File

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

View File

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