From 2713610ca2fc75c777c5da2adee3ac91ba3170d2 Mon Sep 17 00:00:00 2001 From: Eugene Zrazhevsky Date: Sat, 28 Oct 2023 21:15:39 +0300 Subject: [PATCH] weblocopener-57: Trying fix 2 --- build/WeblocOpener.iss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/WeblocOpener.iss b/build/WeblocOpener.iss index 06848e4d..8888fa71 100644 --- a/build/WeblocOpener.iss +++ b/build/WeblocOpener.iss @@ -88,7 +88,8 @@ begin end; P := Pos('.', S); - if (not P = 0) then + Log(Format('Dot position: %s', [P])); + if (P <> 0) then begin SetLength(S, P - 1); end;