mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-05 00:20:08 +00:00
Of course I had to forget about something important
This commit is contained in:
@@ -586,7 +586,7 @@ public sealed class ArchiHandler : ClientMsgHandler {
|
||||
|
||||
CFamilyGroups_GetFamilyGroupForUser_Response body = response.GetDeserializedResponse<CFamilyGroups_GetFamilyGroupForUser_Response>();
|
||||
|
||||
return body.family_group.members.Where(member => member.steamid != steamID).Select(static member => member.steamid).ToHashSet();
|
||||
return body.family_group?.members.Where(member => member.steamid != steamID).Select(static member => member.steamid).ToHashSet() ?? [];
|
||||
}
|
||||
|
||||
internal async Task<uint?> GetLevel() {
|
||||
|
||||
Reference in New Issue
Block a user