From 9eca3a1d8b74e59bcd392a7ed5f64985744c354d Mon Sep 17 00:00:00 2001 From: Macintosh II <95250141+mctaylors@users.noreply.github.com> Date: Mon, 2 Oct 2023 10:18:52 +0300 Subject: [PATCH] meh Signed-off-by: Macintosh II <95250141+mctaylors@users.noreply.github.com> --- src/Services/Update/SongUpdateService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Services/Update/SongUpdateService.cs b/src/Services/Update/SongUpdateService.cs index 4a745d7..31d31c4 100644 --- a/src/Services/Update/SongUpdateService.cs +++ b/src/Services/Update/SongUpdateService.cs @@ -19,7 +19,7 @@ public sealed class SongUpdateService : BackgroundService ("Liquid Sunshine", "Squid Sisters feat. Ian BGM", new TimeSpan(0, 1, 32)), ("Candy-Coated Rocks", "Damp Socks feat. Off the Hook", new TimeSpan(0, 1, 11)), ("Aquasonic", "H2Whoa", new TimeSpan(0, 1, 1)), - ("Ska-Blam!", "Yoko & the Gold Bazookas", new TimeSpan(0, 4, 4)), + ("Ska-BLAM", "Yoko & the Gold Bazookas", new TimeSpan(0, 4, 4)), ("Muck Warfare", "Off the Hook", new TimeSpan(0, 3, 39)), ("Acid Hues", "Off the Hook", new TimeSpan(0, 3, 39)), ("Shark Bytes", "Off the Hook", new TimeSpan(0, 3, 48)), @@ -53,8 +53,8 @@ public sealed class SongUpdateService : BackgroundService while (!ct.IsCancellationRequested) { var nextSong = SongList[_nextSongIndex]; - var builder = new StringBuilder().Append(nextSong.Name).Append(" / ").Append(nextSong.Author); - _activityList[0] = new Activity(builder.ToString(), ActivityType.Listening); + _activityList[0] = new Activity($"{nextSong.Name} / {nextSong.Author}" + , ActivityType.Listening); _client.SubmitCommand( new UpdatePresence( UserStatus.Online, false, DateTimeOffset.UtcNow, _activityList));