diff --git a/src/tidal/service.ts b/src/tidal/service.ts index 471b4ca..482032c 100644 --- a/src/tidal/service.ts +++ b/src/tidal/service.ts @@ -37,7 +37,7 @@ export class TidalService extends BaseService { const response = await this.getClient().get("current"); return this.getSuccessfulResult( - response.volume * 100, // * 100 because it's a decimal and we want a percentage + (response.volume * 100).toFixed(), // * 100 because it's a decimal and we want a percentage ); } catch { const error_message = "error getting volume from tidal";