From 70f6695b72a174e36ed5c70172f31c4af3a75cf6 Mon Sep 17 00:00:00 2001 From: _ <🐱> Date: Thu, 3 Dec 2020 16:19:55 -0700 Subject: [PATCH] Print content of srStr even if length is less than or equal to 5 --- SpotifyKeyDumper/Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpotifyKeyDumper/Utils.cpp b/SpotifyKeyDumper/Utils.cpp index 38fe2a7..83f6f57 100644 --- a/SpotifyKeyDumper/Utils.cpp +++ b/SpotifyKeyDumper/Utils.cpp @@ -294,7 +294,7 @@ void Utils::DownloadSong(std::string fileId, std::string uri, std::string key, s 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; }