Print content of srStr even if length is less than or equal to 5

This commit is contained in:
_ 2020-12-03 16:19:55 -07:00
parent 6492db58e9
commit 70f6695b72

View File

@ -294,7 +294,7 @@ void Utils::DownloadSong(std::string fileId, std::string uri, std::string key, s
if (srStr.length() <= 5) if (srStr.length() <= 5)
{ {
std::cout << "Error: Couldn't fetch storage resolve!" << std::endl; std::cout << "Error: Couldn't fetch storage resolve: (" + srStr + ")"<< std::endl;
return; return;
} }