mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-05 16:41:01 +00:00
Fix ASF not finding correct SteamFamilySharingIDs
The relevant fix lies in xpath, the rest is misc refactor
This commit is contained in:
@@ -1754,11 +1754,11 @@ namespace ArchiSteamFarm {
|
||||
private async Task InitializeFamilySharing() {
|
||||
HashSet<ulong> steamIDs = await ArchiWebHandler.GetFamilySharingSteamIDs().ConfigureAwait(false);
|
||||
|
||||
if ((steamIDs == null) || (steamIDs.Count == 0)) {
|
||||
if (steamIDs == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
SteamFamilySharingIDs.ReplaceIfNeededWith(steamIDs);
|
||||
SteamFamilySharingIDs.ReplaceWith(steamIDs);
|
||||
}
|
||||
|
||||
private async Task<bool> InitLoginAndPassword(bool requiresPassword) {
|
||||
|
||||
Reference in New Issue
Block a user