We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d527a8 commit e1aca92Copy full SHA for e1aca92
ContextMenuManager/Methods/BackupHelper.cs
@@ -1470,7 +1470,9 @@ static BackupList()
1470
1471
private static string GetLookupKey(Scenes scene, string keyName, BackupItemType type)
1472
{
1473
- return $"{scene}|{keyName}|{type}";
+ var normalizedKeyName = keyName ?? string.Empty;
1474
+ var encodedKeyName = Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(normalizedKeyName));
1475
+ return $"{scene}|{encodedKeyName}|{type}";
1476
}
1477
1478
public static BackupItem GetItem(Scenes scene, string keyName, BackupItemType type)
0 commit comments