From d6a17717682e5551e3b9d6f90df738f069f90b84 Mon Sep 17 00:00:00 2001 From: Wolfgang Kulhanek Date: Tue, 14 Oct 2025 19:04:55 +0200 Subject: [PATCH] Try non async --- src/smapi.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/smapi.ts b/src/smapi.ts index 87c87e8..c9c38fc 100644 --- a/src/smapi.ts +++ b/src/smapi.ts @@ -198,9 +198,10 @@ class SonosSoap { }; } - async reportAccountAction(_args: any, _headers: any) { + reportAccountAction(args: any, headers: any) { // Sonos calls this after a user adds or removes an account. // It's safe to just acknowledge the call. + logger.info('Sonos reportAccountAction: ' + args + 'Headers: ' + headers); return {}; }