General bits of cleanup
This commit is contained in:
@@ -9,10 +9,10 @@ namespace PluralKit.Bot
|
||||
{
|
||||
public class ProxyMatcher
|
||||
{
|
||||
public static readonly Duration LatchExpiryTime = Duration.FromHours(6);
|
||||
private static readonly Duration LatchExpiryTime = Duration.FromHours(6);
|
||||
|
||||
private IClock _clock;
|
||||
private ProxyTagParser _parser;
|
||||
private readonly IClock _clock;
|
||||
private readonly ProxyTagParser _parser;
|
||||
|
||||
public ProxyMatcher(ProxyTagParser parser, IClock clock)
|
||||
{
|
||||
|
@@ -18,7 +18,7 @@ namespace PluralKit.Bot
|
||||
{
|
||||
public class ProxyService
|
||||
{
|
||||
public static readonly TimeSpan MessageDeletionDelay = TimeSpan.FromMilliseconds(1000);
|
||||
private static readonly TimeSpan MessageDeletionDelay = TimeSpan.FromMilliseconds(1000);
|
||||
|
||||
private readonly LogChannelService _logChannel;
|
||||
private readonly IDatabase _db;
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
@@ -49,20 +48,6 @@ namespace PluralKit.Bot
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool TryMatchTags(string input, ProxyTag tag, out string inner)
|
||||
{
|
||||
// This just wraps TryMatchTagsInner w/ support for leading mentions
|
||||
var leadingMention = ExtractLeadingMention(ref input);
|
||||
|
||||
inner = "";
|
||||
if (!TryMatchTagsInner(input, tag, out var innerRaw)) return false;
|
||||
|
||||
// Add leading mentions back
|
||||
inner = leadingMention == null ? innerRaw : $"{leadingMention} {innerRaw}";
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
private bool TryMatchTagsInner(string input, ProxyTag tag, out string inner)
|
||||
{
|
||||
inner = "";
|
||||
|
Reference in New Issue
Block a user