Skip to content

Commit

Permalink
fix: Fix infinite loop on start (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1ller0 authored Oct 20, 2023
1 parent 70c7770 commit 149a301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fridgefm/radio-core",
"author": "Grigory Gorshkov",
"version": "3.2.5",
"version": "3.2.6",
"description": "internet radio engine made on NodeJS platform",
"license": "MIT",
"main": "./lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/providers/track/track.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const createSoundStream = ({ fullPath, bitrate, tagsSize }: TrackStats):
// @ts-ignore
_.drop(Math.floor(tagsSize / bitrate)), // remove id3tags from stream
// @ts-ignore
_.slice(60, 80), // for debuggine purposes
// _.slice(60, 80), // for debuggine purposes
// @ts-ignore
_.ratelimit(1, 1000),
);
Expand Down

0 comments on commit 149a301

Please sign in to comment.