mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 22:37:54 +00:00
Fix importing brackets from Tupperbox. Closes #123
This commit is contained in:
parent
c4d28f64c7
commit
4ce4efcc61
2 changed files with 7 additions and 2 deletions
|
|
@ -246,6 +246,11 @@ namespace PluralKit
|
|||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
public static string NullIfEmpty(this string input)
|
||||
{
|
||||
return input.Trim().Length == 0 ? null : input;
|
||||
}
|
||||
}
|
||||
|
||||
public static class Emojis {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue