Skip to content

Commit e3b5090

Browse files
committed
Merge branch 'vnext'
2 parents 290b054 + 1cc6b95 commit e3b5090

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Clients/IrdLibraryClient/IrdLibraryClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="DiscUtils.OpticalDisk" Version="0.16.13" />
8+
<PackageReference Include="LTRData.DiscUtils.OpticalDisk" Version="1.0.54" />
99
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
1010
<PackageReference Include="System.IO.Hashing" Version="9.0.3" />
1111
</ItemGroup>

CompatBot/Commands/Events.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ public static async ValueTask List(
398398
return score > 0.5 ? name : eventName;
399399
}
400400

401-
private static async Task<TimeSpan?> TryParseTimeSpanAsync(CommandContext ctx, string duration, bool react = true)
401+
private static async ValueTask<TimeSpan?> TryParseTimeSpanAsync(CommandContext ctx, string duration, bool react = true)
402402
{
403403
var d = Duration().Match(duration);
404404
if (!d.Success)

CompatBot/Commands/Pr.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ private static async ValueTask<DiscordMessageBuilder> GetPrBuildMessageAsync(Dis
261261
windowsDownloadText = $"⏳ Pending in {estimatedTime.AsTimeDeltaDescription()}…";
262262
linuxDownloadText = windowsDownloadText;
263263
//macDownloadText = windowsDownloadText;
264-
windowsArmDownloadText = windowsArmDownloadText;
264+
windowsArmDownloadText = windowsDownloadText;
265265
linuxArmDownloadText = windowsDownloadText;
266266
//macArmDownloadText = windowsDownloadText;
267267
}

CompatBot/Utils/Extensions/InteractivityExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ await Task.WhenAny(
9696
if (reaction is not null)
9797
await reaction.Interaction.CreateResponseAsync(DiscordInteractionResponseType.DeferredMessageUpdate).ConfigureAwait(false);
9898
}
99-
if (text != null && !message.Channel.IsPrivate)
99+
if (text is not null && !message.Channel.IsPrivate)
100100
try
101101
{
102102
DeletedMessagesMonitor.RemovedByBotCache.Set(text.Id, true, DeletedMessagesMonitor.CacheRetainTime);

CompatBot/Utils/Extensions/StringUtils.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static partial class StringUtils
2525
'\u2002', '\u2003', '\u2004', '\u2005', '\u2006',
2626
'\u2007', '\u2008', '\u2009', '\u200a', '\u200b',
2727
'\u200c', '\u200d', '\u200e', '\u200f',
28-
'\u2028', '\u2029', '\u202a', '\u202b', '\u202c',
28+
'\u2028', '\u2029', '\u202a', '\u202b',
2929
'\u202c', '\u202d', '\u202e', '\u202f',
3030
'\u205f', '\u2060', '\u2061', '\u2062', '\u2063',
3131
'\u2064', '\u2065', '\u2066', '\u2067', '\u2068',

0 commit comments

Comments
 (0)