From 01cf6d289a6a5486dcc36fc6429f9c34983f506f Mon Sep 17 00:00:00 2001 From: zvon Date: Wed, 15 Jan 2020 22:44:29 +0100 Subject: [PATCH] Don't print name changes on database-add --- functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.cpp b/functions.cpp index e1c32b0..a6e3e17 100644 --- a/functions.cpp +++ b/functions.cpp @@ -485,7 +485,7 @@ void addToDB( string &show, const string &path, const string &language, #endif for ( auto &x : seasons ) { singleSeason( absolute, show, x.first, id, language, pattern, linux, - true, &x.second, true, dvd ); + true, &x.second, false, dvd ); i++; #ifndef GUI ProgressBar::print( ( i * 100 ) / size );