Skip to content

Commit

Permalink
Merge pull request #25 from JvPeek/develop
Browse files Browse the repository at this point in the history
fix: Use correct param for maxSongLength
  • Loading branch information
awsdcrafting authored Jan 24, 2024
2 parents a4ce296 + 43d3cfd commit 4e8f091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bongocat.js
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ if (params.get("stackMode"))
stackMode = true;
}

let maxSongLengthParam = params.get("minBpm");
let maxSongLengthParam = params.get("maxSongLength");
if (maxSongLengthParam && !isNaN(Number(maxSongLengthParam)))
{
setMaxSongLength(maxSongLengthParam);
Expand Down

0 comments on commit 4e8f091

Please sign in to comment.