private void ToFollow(Blog blog)
 {
     if (_postPage.ToFollow(blog.URL))
     {
         blog.Isfollowed = true;
         BotEnvironment.Logger.Info($"Followed: {blog.URL}");
     }
     else
     {
         blog.IsErrorState = true;
         BotEnvironment.Logger.Info($"Error! Not followed: {blog.URL}");
     }
 }