mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
Deconstruct KeyValuePairs globally
And add support for doing this in .NET Framework
This commit is contained in:
@@ -135,8 +135,8 @@ namespace ArchiSteamFarm {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (KeyValuePair<uint, (uint ChangeNumber, HashSet<uint> AppIDs)> packageData in packagesData) {
|
||||
PackagesData[packageData.Key] = packageData.Value;
|
||||
foreach ((uint packageID, (uint ChangeNumber, HashSet<uint> AppIDs) package) in packagesData) {
|
||||
PackagesData[packageID] = package;
|
||||
}
|
||||
|
||||
await Save().ConfigureAwait(false);
|
||||
|
||||
Reference in New Issue
Block a user