Skip to content

Commit

Permalink
fix(QueueCommand): Add spaces between seperator (Hazmi35#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazmi35 authored Nov 15, 2021
1 parent 06469c2 commit f6f122e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/QueueCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class QueueCommand extends BaseCommand {
private generateFooter(message: Message, multiple: boolean, index = 0, pages: string[][] = []): [string, string] {
return [
`${message.client.lang.COMMAND_QUEUE_EMBED_FOOTER(message.guild!.queue!.tracks.first()!.metadata.title)}` +
`${multiple ? `| ${message.client.lang.COMMAND_QUEUE_EMBED_PAGES_MSG(index + 1, pages.length)}` : ""}`,
`${multiple ? ` | ${message.client.lang.COMMAND_QUEUE_EMBED_PAGES_MSG(index + 1, pages.length)}` : ""}`,
images.info
];
}
Expand Down

0 comments on commit f6f122e

Please sign in to comment.