Skip to content

Commit

Permalink
Merge pull request #122 from thomasloupe/dev
Browse files Browse the repository at this point in the history
Fix outdated .NET sample MusicModule.cs
  • Loading branch information
angelobreuer authored Aug 15, 2023
2 parents f7a24f9 + f2174a5 commit 7bacfb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/Lavalink4NET.Discord_NET.ExampleBot/MusicModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ public async Task Play(string query)

if (position == 0)
{
await ReplyAsync("🔈 Playing: " + track.Source);
await ReplyAsync("🔈 Playing: " + track.Uri);
}
else
{
await ReplyAsync("🔈 Added to queue: " + track.Source);
await ReplyAsync("🔈 Added to queue: " + track.Uri);
}
}

Expand Down

0 comments on commit 7bacfb0

Please sign in to comment.