From d7fa94211aab72279271caf4dbeeabcf4f745d60 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Tue, 20 Feb 2024 16:28:23 +0100 Subject: [PATCH] Fix warning --- Mastodon/Scene/Profile/ProfileViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Profile/ProfileViewController.swift b/Mastodon/Scene/Profile/ProfileViewController.swift index 6141014a9..ddd28307e 100644 --- a/Mastodon/Scene/Profile/ProfileViewController.swift +++ b/Mastodon/Scene/Profile/ProfileViewController.swift @@ -803,7 +803,7 @@ extension ProfileViewController: ProfileHeaderViewControllerDelegate { let unblockAction = UIAlertAction(title: L10n.Common.Controls.Friendship.unblock, style: .default) { [weak self] _ in guard let self else { return } Task { - let newRelationship = try await DataSourceFacade.responseToUserBlockAction( + _ = try await DataSourceFacade.responseToUserBlockAction( dependency: self, account: account )