diff --git a/be/src/MusicVideoService.cpp b/be/src/MusicVideoService.cpp index d83107a..0fd89e9 100644 --- a/be/src/MusicVideoService.cpp +++ b/be/src/MusicVideoService.cpp @@ -99,6 +99,10 @@ vector MusicVideoService::downloadAudio(const string& url) { boost::property_tree::ptree ptree; std::stringstream tmp(json); read_json(tmp, ptree); + if (SoulSifterSettings::getInstance().get("app.debug")) { + LOG(DEBUG) << "song info"; + LOG(DEBUG) << json; + } Song* song = new Song(); Album* album = new Album(); diff --git a/fe/package.json b/fe/package.json index ef488ae..5ab657b 100644 --- a/fe/package.json +++ b/fe/package.json @@ -2,7 +2,7 @@ "name": "SoulSifter", "version": "1.5.1", "description": "DJ & music organization app.", - "build": 2999, + "build": 3000, "main": "main.js", "scripts": { "fe:build": "vite build",