[bookmarks] do not send request to delete for empty list of guides

This commit is contained in:
Arsentiy Milchakov 2020-09-30 15:30:14 +03:00 committed by mpimenov
parent 906ae3b05c
commit 766c17ae1a

View file

@ -680,7 +680,7 @@ void BookmarkCatalog::RequestBookmarksToDelete(std::string const & accessToken,
BookmarksToDeleteCallback && callback) const
{
auto const url = BuildDeleteRequestUrl();
if (url.empty())
if (url.empty() || serverIds.empty())
{
if (callback)
callback({});