mirror of
https://github.com/fmhy/dupe-checker.git
synced 2026-03-11 08:55:39 +00:00
Fix "Final URL" column in csv (1.17.3)
This commit is contained in:
parent
e6825fe97f
commit
03837b9007
1 changed files with 2 additions and 2 deletions
|
|
@ -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 = ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue