diff --git a/src/tidal/service.ts b/src/tidal/service.ts index f18e0d3..6e95fcf 100644 --- a/src/tidal/service.ts +++ b/src/tidal/service.ts @@ -58,7 +58,7 @@ export class TidalService extends BaseService { const req = await this.getVolume(); if (req.successful) { const volume = req.result as number; - const wantedVolume = volume + value; + const wantedVolume = this.percentageToDecimal(volume) + value; const clampWantedVolume = this.clamp(wantedVolume); return await this.setVolumeToTidal(clampWantedVolume); }