From 445ba013f43969cf7693f24f788ff2690cf3f2c9 Mon Sep 17 00:00:00 2001 From: DWW Date: Wed, 20 Jul 2022 16:59:11 +0300 Subject: [PATCH] Fixed weird text error --- main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 7705435..06c80b5 100644 --- a/main.cpp +++ b/main.cpp @@ -639,7 +639,9 @@ bool full_donwload(const string& path, const string& release_prefix, tmp += FOLDER_DELIM; tmp += "FLAC"; - ok = make_dir(tmp);--dont-use-padding + ok = make_dir(tmp); + if (!ok) + { return false; } }