Fix inspection warnings (#208)

Signed-off-by: neroduckale <100025711+neroduckale@users.noreply.github.com>
This commit is contained in:
neroduckale 2023-12-06 00:24:55 +05:00 committed by GitHub
parent 4c50bdaff7
commit bcd1db8c8e
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 25 deletions

View file

@ -26,10 +26,7 @@ public sealed class SongUpdateService : BackgroundService
("Squid Sisters", "Ink Me Up", new TimeSpan(0, 2, 13))
};
private readonly List<Activity> _activityList = new(1)
{
new Activity("with Remora.Discord", ActivityType.Game)
};
private readonly List<Activity> _activityList = [new Activity("with Remora.Discord", ActivityType.Game)];
private readonly DiscordGatewayClient _client;
private readonly GuildDataService _guildData;