removed misleading warning about null circle id in newsfeed

This commit is contained in:
csoler 2020-02-29 12:13:51 +01:00
parent a050669a93
commit 34fc132003
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -293,6 +293,9 @@ void NewsFeed::handleCircleEvent(std::shared_ptr<const RsEvent> event)
RsGxsCircleDetails details;
if(pe->mCircleId.isNull()) // probably an item for cache update
return ;
if(!rsGxsCircles->getCircleDetails(pe->mCircleId,details))
{
std::cerr << "(EE) Cannot get information about circle " << pe->mCircleId << ". Not in cache?" << std::endl;