Skip to content

Commit 63af03f

Browse files
committed
Merge branch 'vnext'
2 parents da9f961 + a77bcc2 commit 63af03f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CompatBot/EventHandlers/DiscordInviteFilter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ public static async Task<bool> CheckMessageInvitesAreSafeAsync(DiscordClient cli
5353
{
5454
DeletedMessagesMonitor.RemovedByBotCache.Set(message.Id, true, DeletedMessagesMonitor.CacheRetainTime);
5555
await message.DeleteAsync("Not a white-listed discord invite link").ConfigureAwait(false);
56-
await client.ReportAsync("🛃 An unapproved discord invite", message, "In invalid or expired invite", null, null, null, ReportSeverity.Low).ConfigureAwait(false);
56+
await client.ReportAsync("🛃 An unapproved discord invite", message, "An invalid or expired invite", null, null, null, ReportSeverity.Low).ConfigureAwait(false);
5757
await message.Channel.SendMessageAsync($"{message.Author.Mention} please refrain from posting invites that were not approved by a moderator, especially expired or invalid.").ConfigureAwait(false);
5858
}
5959
catch (Exception e)
6060
{
6161
Config.Log.Warn(e);
62-
await client.ReportAsync("🛃 An unapproved discord invite", message, "In invalid or expired invite", null, null, null, ReportSeverity.Medium).ConfigureAwait(false);
62+
await client.ReportAsync("🛃 An unapproved discord invite", message, "An invalid or expired invite", null, null, null, ReportSeverity.Medium).ConfigureAwait(false);
6363
await message.ReactWithAsync(Config.Reactions.Moderated,
6464
$"{message.Author.Mention} please remove this expired or invalid invite, and refrain from posting it again until you have received an approval from a moderator.",
6565
true

CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ private static void BuildWeirdSettingsSection(DiscordEmbedBuilder builder, LogPa
369369
&& memoryMaps.TryGetValue("BAR", out var barMemory)
370370
&& deviceLocalMemory != barMemory)
371371
{
372-
generalNotes.Add("⚠️ [Re-BAR](<https://www.nvidia.com/en-us/geforce/news/geforce-rtx-30-series-resizable-bar-support/>) (or SAM) is not [enabled](<https://www.intel.com/content/www/us/en/support/articles/000090831/graphics.html>) on this system, which may impact performance");
372+
generalNotes.Add("⚠️ [Re-BAR](<https://www.nvidia.com/en-us/geforce/news/geforce-rtx-30-series-resizable-bar-support/>) (or SAM) is [not enabled](<https://www.intel.com/content/www/us/en/support/articles/000090831/graphics.html>) on this system, which may impact performance");
373373
}
374374
}
375375

0 commit comments

Comments
 (0)