Skip to content

Commit

Permalink
Fix field ordering on now playing
Browse files Browse the repository at this point in the history
  • Loading branch information
redstonekasi committed Jun 8, 2024
1 parent 37c7884 commit d5f8a98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/radio/np.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export default new Command({
const quotes = submitters.get(song.submitter)!.quotes;
const embed = new EmbedBuilder({
author: {
name: song.name,
name: song.artist,
},
title: song.artist,
title: song.name,
url: song.sourceUrl,
color: resolveColor("Green"),
});
Expand Down

0 comments on commit d5f8a98

Please sign in to comment.