Skip to content

Commit

Permalink
fix(qml): don't crash when adding favorites from tag view (fix #3191)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed Jan 10, 2025
1 parent 4f26ea7 commit 51ae331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui-qml/src/components/TagView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Item {
if (isFavorited) {
backend.removeFavorite(tagContextMenu.tag)
} else {
backend.addFavorite(tagContextMenu.tag, searchTab.site)
backend.addFavorite(tagContextMenu.tag, searchTab.site.url)
}
}
}
Expand Down

0 comments on commit 51ae331

Please sign in to comment.