From 148fa9bbd954bb29ee17d1fb87f1117a16cfe698 Mon Sep 17 00:00:00 2001 From: _ <🐱> Date: Wed, 2 Dec 2020 16:25:00 -0700 Subject: [PATCH] Use "empty" instead of "invalid" in an error message related to downloading --- SpotifyKeyDumper/Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpotifyKeyDumper/Utils.cpp b/SpotifyKeyDumper/Utils.cpp index 09706b7..10ba108 100644 --- a/SpotifyKeyDumper/Utils.cpp +++ b/SpotifyKeyDumper/Utils.cpp @@ -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; }