1.11.7 hotfix
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 36s

Co-authored-by: defnotken <itsdefnotken@gmail.com>
Reviewed-on: #25
This commit was merged in pull request #25.
This commit is contained in:
2025-09-12 01:14:23 +02:00
parent abe28e931c
commit a8512e2a86
3 changed files with 6 additions and 5 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();