From 09e97f2bdb40ed0607e1a64913d29f87dc4e9f9d Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 25 Jul 2024 18:59:03 -0400 Subject: [PATCH] Make the "Unignore this user" button work on the Ignored Users page This function now takes a QString. This should be fine to use since it's in the 0.8.2 release which we require. (cherry picked from commit 9a4504ce616154b3e826364280d92f44fbed417d) --- src/settings/IgnoredUsersDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/IgnoredUsersDialog.qml b/src/settings/IgnoredUsersDialog.qml index 8e2e7505f..d1ff18ded 100644 --- a/src/settings/IgnoredUsersDialog.qml +++ b/src/settings/IgnoredUsersDialog.qml @@ -50,7 +50,7 @@ FormCard.FormCardPage { QQC2.ToolButton { text: i18nc("@action:button", "Unignore this user") icon.name: "list-remove-symbolic" - onClicked: root.connection.removeFromIgnoredUsers(root.connection.user(modelData)) + onClicked: root.connection.removeFromIgnoredUsers(modelData) display: QQC2.Button.IconOnly QQC2.ToolTip.text: text QQC2.ToolTip.visible: hovered