Use "empty" instead of "invalid" in an error message related to downloading

This commit is contained in:
_ 2020-12-02 16:25:00 -07:00
parent 01e27d16dd
commit 148fa9bbd9

View File

@ -442,7 +442,7 @@ void Utils::DownloadSong(std::string fileId, std::string uri, std::string key, s
if (songInfo->title.empty() || songInfo->artist.empty() || songInfo->album.empty())
{
std::cout << "Error: Invalid title/artist/album name!" << std::endl;
std::cout << "Error: Empty title/artist/album name!" << std::endl;
delete songInfo;
return;
}