Able to download song. Now to have something interface with the downloaded songs and play them.

This commit is contained in:
kdeng00
2019-12-17 21:08:28 -05:00
parent dcc2320332
commit 94bee732aa
7 changed files with 57 additions and 35 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ namespace utility {
public:
template<typename S = std::string>
static S appendForwardSlashToUri(const S& uri) {
S fullUri(uri);
std::string fullUri(uri);
if (fullUri.at(fullUri.size() - 1) != '/') {
fullUri.append("/");
}