1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 00:19:00 +03:00

Fix redundant type specification (#333)

This PR fixes failing checks for #332
This commit is contained in:
Macintxsh 2024-09-23 21:55:58 +03:00 committed by GitHub
parent 086cb672f0
commit 8028d47ba1
Signed by: GitHub
GPG key ID: B5690EEEBB952194

View file

@ -41,7 +41,7 @@ public sealed class SongUpdateService : BackgroundService
("Squid Sisters", "Maritime Memory", new TimeSpan(0, 2, 47)) ("Squid Sisters", "Maritime Memory", new TimeSpan(0, 2, 47))
]; ];
private readonly List<Activity> _activityList = [new Activity("with Remora.Discord", ActivityType.Game)]; private readonly List<Activity> _activityList = [new("with Remora.Discord", ActivityType.Game)];
private readonly DiscordGatewayClient _client; private readonly DiscordGatewayClient _client;
private readonly GuildDataService _guildData; private readonly GuildDataService _guildData;