mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Fixed a few bugs and switched to .NET framework 4.7
This commit is contained in:
@@ -359,9 +359,10 @@ namespace CUETools.Processor
|
||||
{
|
||||
while (exists(result))
|
||||
{
|
||||
var oldkey = tags[unique_key];
|
||||
tags[unique_key] = unique.ToString();
|
||||
string new_result = ReplaceMultiple(fmt, tags, maxLen);
|
||||
if (new_result == result || new_result == String.Empty || new_result == null)
|
||||
if ((new_result == result && oldkey != tags[unique_key]) || new_result == String.Empty || new_result == null)
|
||||
break;
|
||||
result = new_result;
|
||||
unique++;
|
||||
|
||||
Reference in New Issue
Block a user