fixes for pet handling, uploads, clear storage button, remove button while reconnecting, put paused to online/paused, put visible to online
This commit is contained in:
@@ -29,14 +29,14 @@ public class FileReplacementComparer : IEqualityComparer<FileReplacement>
|
||||
return hash;
|
||||
}
|
||||
|
||||
private bool CompareLists(List<string> list1, List<string> list2)
|
||||
private bool CompareLists(HashSet<string> list1, HashSet<string> list2)
|
||||
{
|
||||
if (list1.Count != list2.Count)
|
||||
return false;
|
||||
|
||||
for (int i = 0; i < list1.Count; i++)
|
||||
{
|
||||
if (!string.Equals(list1[i], list2[i], StringComparison.OrdinalIgnoreCase))
|
||||
if (!string.Equals(list1.ElementAt(i), list2.ElementAt(i), StringComparison.OrdinalIgnoreCase))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user