From 93fff14053378d155321c4d4b6e34ff370170ce9 Mon Sep 17 00:00:00 2001 From: Ske Date: Fri, 21 Jun 2019 13:53:19 +0200 Subject: [PATCH] Fix skipping proxying of members with no tags --- PluralKit.Bot/Services/ProxyService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Services/ProxyService.cs b/PluralKit.Bot/Services/ProxyService.cs index 06b4d288..01af085a 100644 --- a/PluralKit.Bot/Services/ProxyService.cs +++ b/PluralKit.Bot/Services/ProxyService.cs @@ -51,7 +51,7 @@ namespace PluralKit.Bot var ordered = potentials.OrderByDescending(p => p.Member.ProxyString.Length); foreach (var potential in ordered) { - if (potential.Member.Prefix == null && potential.Member.Suffix != null) continue; + if (potential.Member.Prefix == null && potential.Member.Suffix == null) continue; var prefix = potential.Member.Prefix ?? ""; var suffix = potential.Member.Suffix ?? "";