fix(pi-hole): cached session not invalidated when changing password (#3351)

This commit is contained in:
Meier Lukas
2025-06-07 16:20:21 +02:00
committed by GitHub
parent 1b3770aafb
commit a9e68e13d5

View File

@@ -77,6 +77,7 @@ export class PiHoleIntegrationV6 extends Integration implements DnsHoleSummaryIn
protected async testingAsync({ fetchAsync }: IntegrationTestingInput): Promise<TestingResult> {
const sessionId = await this.getSessionAsync(fetchAsync);
await this.clearSessionAsync(sessionId, fetchAsync);
await this.sessionStore.clearAsync();
return { success: true };
}