Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
fix: Formatting to new eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusbegby committed Jul 17, 2023
1 parent a4d5ab5 commit bcc4f8f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/commands/player/seek.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ module.exports = {
let durationArray = durationInput.split(':');

switch (durationArray.length) {
case 1:
durationArray.unshift('00', '00');
break;
case 2:
durationArray.unshift('00');
break;
default:
break;
case 1:
durationArray.unshift('00', '00');
break;
case 2:
durationArray.unshift('00');
break;
default:
break;
}

if (durationArray.length === 0 || durationArray.length > 3) {
Expand Down

0 comments on commit bcc4f8f

Please # to comment.