From 1689f04a6efaa6c5d57b1d31ea391bcdf213a17c Mon Sep 17 00:00:00 2001 From: Darius Date: Tue, 3 Feb 2026 22:53:56 +0100 Subject: [PATCH] does this work better --- src/tidal/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tidal/service.ts b/src/tidal/service.ts index 6e95fcf..4da9181 100644 --- a/src/tidal/service.ts +++ b/src/tidal/service.ts @@ -51,7 +51,7 @@ export class TidalService extends BaseService { } async setVolume(argument: string): Promise> { - const value = this.percentageToDecimal(parseFloat(argument)); + const value = this.percentageToDecimal(parseInt(argument, 10)); // relative const adjustMatch = argument.match(/^([+-])/); if (adjustMatch) {