Fix discrepancy between SearchResultsViewController.Item == and hash

This commit is contained in:
Shadowfacts 2024-07-22 22:19:31 -07:00
parent 2e2279ba8c
commit 1358152dec
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ extension SearchResultsViewController {
hasher.combine(id)
case let .hashtag(hashtag):
hasher.combine("hashtag")
hasher.combine(hashtag.url)
hasher.combine(hashtag.name)
case let .status(id, _):
hasher.combine("status")
hasher.combine(id)