mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
* Closes #3415 * Misc * Refresh tokens always for non-listed packages
This commit is contained in:
committed by
GitHub
parent
a19611c3ae
commit
10abfb847f
@@ -1875,6 +1875,14 @@ public sealed class ArchiWebHandler : IDisposable {
|
||||
return response?.Content;
|
||||
}
|
||||
|
||||
internal async Task<StoreUserData?> GetStoreUserData() {
|
||||
Uri request = new(SteamStoreURL, "/dynamicstore/userdata?l=english");
|
||||
|
||||
ObjectResponse<StoreUserData>? response = await UrlGetToJsonObjectWithSession<StoreUserData>(request).ConfigureAwait(false);
|
||||
|
||||
return response?.Content;
|
||||
}
|
||||
|
||||
internal async Task<byte?> GetTradeHoldDurationForTrade(ulong tradeID) {
|
||||
ArgumentOutOfRangeException.ThrowIfZero(tradeID);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user