Skip to content

Commit

Permalink
fix logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
rystaf committed Jan 2, 2024
1 parent d65b966 commit 5279b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/reader/icon/finder.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,5 +294,5 @@ func URLHasChanged(original, updated, siteURL string) bool {
return false
}
updated, _ = urllib.AbsoluteURL(siteURL, updated)
return original == updated
return original != updated
}

0 comments on commit 5279b77

Please sign in to comment.