This commit is contained in:
Markus 2019-10-14 18:46:51 +02:00
parent 9e2db246fd
commit 6233d854c3
2 changed files with 3 additions and 2 deletions

View File

@ -61,7 +61,7 @@ struct Settings {
proxy_ip = "127.0.0.1",
languages = "GerDub,GerSub,Eng",
genaueHoster = "",
version = "3.2.4",
version = "3.2.5",
defaultFileVersion="1.6",
outputFilePath = "",
default_checkPath = "",

View File

@ -997,7 +997,8 @@ int ProgramManager::updateModus(Settings *settings)
std::cout << " => Infos (zur Version): " << std::endl;
std::string line;
while (std::getline(strstream, line).good()) {
std::cout << " > " << line << std::endl;
if(line != "")
std::cout << " > " << line << std::endl;
}