1
0
mirror of synced 2024-11-30 18:24:39 +01:00

Fix wring the string variable

This commit is contained in:
KillzXGaming 2019-05-04 15:21:31 -04:00
parent e2e054f623
commit afdc56f0d4
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -132,7 +132,7 @@ namespace Switch_Toolbox.Library
{
if (strings.Contains(oldString))
{
oldString = $"oldString{index++}";
oldString = $"{oldString}{index++}";
if (strings.Contains(oldString))
return RenameDuplicateString(strings, oldString, index);