From a9e68e13d53c8e06d150ecba085680cd248d4f64 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Sat, 7 Jun 2025 16:20:21 +0200 Subject: [PATCH] fix(pi-hole): cached session not invalidated when changing password (#3351) --- packages/integrations/src/pi-hole/v6/pi-hole-integration-v6.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/integrations/src/pi-hole/v6/pi-hole-integration-v6.ts b/packages/integrations/src/pi-hole/v6/pi-hole-integration-v6.ts index 6170bc2c1..8c863dc0e 100644 --- a/packages/integrations/src/pi-hole/v6/pi-hole-integration-v6.ts +++ b/packages/integrations/src/pi-hole/v6/pi-hole-integration-v6.ts @@ -77,6 +77,7 @@ export class PiHoleIntegrationV6 extends Integration implements DnsHoleSummaryIn protected async testingAsync({ fetchAsync }: IntegrationTestingInput): Promise { const sessionId = await this.getSessionAsync(fetchAsync); await this.clearSessionAsync(sessionId, fetchAsync); + await this.sessionStore.clearAsync(); return { success: true }; }