From 03837b9007a23c57ea812bd4d45bf5745a729d19 Mon Sep 17 00:00:00 2001 From: cevoj35548 Date: Sat, 10 Jun 2023 15:20:25 -0500 Subject: [PATCH] Fix "Final URL" column in csv (1.17.3) --- FmhyChecker.pyw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FmhyChecker.pyw b/FmhyChecker.pyw index f0312fe..cbe7e48 100644 --- a/FmhyChecker.pyw +++ b/FmhyChecker.pyw @@ -32,7 +32,7 @@ from typing import Union __author__ = "cevoj" -__version__ = "1.17.2" +__version__ = "1.17.3" # disable ssl warnings @@ -309,7 +309,7 @@ class UI(QMainWindow): f'HYPERLINK("{r.url}", "{r.status_code}")' for r in self.tested_items[full_link].history )+')' - final_url = self.tested_items[full_link].url + final_url = self.tested_items[full_link].history[-1].url else: # if the link was not tested, set values to blank reason = redirects = final_url = status_code = ''