From adc25f034cb34f234a96a66235518d8705f52fc7 Mon Sep 17 00:00:00 2001 From: gmc Date: Mon, 29 Jul 2024 01:00:39 +0200 Subject: [PATCH] [TF-1590] remove auth requests on move to trash --- TwoFAS/Data/Interactors/TrashingServiceInteractor.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/TwoFAS/Data/Interactors/TrashingServiceInteractor.swift b/TwoFAS/Data/Interactors/TrashingServiceInteractor.swift index 623fe2ff..a262140e 100644 --- a/TwoFAS/Data/Interactors/TrashingServiceInteractor.swift +++ b/TwoFAS/Data/Interactors/TrashingServiceInteractor.swift @@ -43,6 +43,7 @@ extension TrashingServiceInteractor: TrashingServiceInteracting { func trashService(_ serviceData: ServiceData) { Log("TrashingServiceInteractor - trashService", module: .interactor) mainRepository.trashService(serviceData) + removeAuthRequests(for: serviceData.secret) } func untrashService(_ serviceData: ServiceData) {