mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 06:47:56 +00:00
Fix skipping proxying of members with no tags
This commit is contained in:
parent
6e7950722d
commit
93fff14053
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ?? "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue