Skip to content

Commit

Permalink
Fix "Final URL" column in csv (1.17.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
cevoj35 committed Jun 10, 2023
1 parent e6825fe commit 03837b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FmhyChecker.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ from typing import Union


__author__ = "cevoj"
__version__ = "1.17.2"
__version__ = "1.17.3"


# disable ssl warnings
Expand Down Expand Up @@ -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 = ''
Expand Down

0 comments on commit 03837b9

Please sign in to comment.