Fixes to Threshold and UI + syncshell
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user