1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Another fix

This commit is contained in:
KillzXGaming 2019-05-04 15:28:38 -04:00
parent afdc56f0d4
commit 025703f33e
6 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

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