diff options
-rw-r--r-- | HISTORY.h | 7 | ||||
-rw-r--r-- | lib/common.c | 1 |
2 files changed, 6 insertions, 2 deletions
@@ -4,8 +4,8 @@ * ----------------------------------- */ -#define _VERSION "1.1.162" -#define VERSION_DATE "28.07.2020" +#define _VERSION "1.1.163" +#define VERSION_DATE "17.08.2020" #define DB_API 7 #ifdef GIT_REV @@ -19,6 +19,9 @@ * * +2020-08-17: version 1.1.163 (horchi, patch by kfb77) + - change: Improved match of series + 2020-07-28: version 1.1.162 (Alexander Grothe, horchi) - change: Improved curl handling diff --git a/lib/common.c b/lib/common.c index 597f0d5..a1b8f8a 100644 --- a/lib/common.c +++ b/lib/common.c @@ -380,6 +380,7 @@ void prepareCompressed(std::string& pattern) toUpper(pattern); removeWord(pattern, " TEIL "); + removeWord(pattern, "(TEIL "); removeWord(pattern, " FOLGE "); removeCharsExcept(pattern, notignore); } |