From 0d46c8a66ecb44367e18c909f5f20eb6e3856bc8 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Tue, 2 Jan 2024 13:33:11 +0100 Subject: [PATCH] Allow static RU exchanges only between 0001 and 7999. --- Configuration.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Configuration.cpp b/Configuration.cpp index 216d09b39..6c387bcbd 100644 --- a/Configuration.cpp +++ b/Configuration.cpp @@ -244,7 +244,9 @@ namespace |X85|X86|X87|X88|X89|X90|X91 |X92|X93|X94|X95|X96|X97|X98 |X99 - |[0-9][0-9][0-9][0-9] # 4-digit numbers + |[0][0][0][1-9] # 4-digit numbers + |[0][0-9][1-9][0-9] # between 0001 + |[1-7][0-9][0-9][0-9] # and 7999 ) )", QRegularExpression::CaseInsensitiveOption | QRegularExpression::ExtendedPatternSyntaxOption};