Fixes to Threshold and UI + syncshell

This commit is contained in:
defnotken
2025-09-11 18:09:39 -05:00
parent abe28e931c
commit b62a9588d6
2 changed files with 5 additions and 4 deletions

View File

@@ -299,7 +299,7 @@ public class ServerConfigurationManager
internal void AddPairTag(string tag)
{
if (tag.Length > _maxCharactersFolder)
if (tag.Length <= _maxCharactersFolder)
{
CurrentPairTagStorage().ServerAvailablePairTags.Add(tag);
_pairTagConfig.Save();
@@ -313,7 +313,7 @@ public class ServerConfigurationManager
internal void AddSyncshellTag(string tag)
{
if (tag.Length > _maxCharactersFolder)
if (tag.Length <= _maxCharactersFolder)
{
CurrentSyncshellTagStorage().ServerAvailableSyncshellTags.Add(tag);
_syncshellTagConfig.Save();