Update from ASFB

This commit is contained in:
Łukasz Domeradzki
2024-03-28 03:08:50 +01:00
parent 8ad24e2f9f
commit 63421f7ed4

View File

@@ -71,6 +71,10 @@ public static class SteamUtilities {
internal static EResult? InterpretError(string errorText) {
ArgumentException.ThrowIfNullOrEmpty(errorText);
if (errorText.StartsWith("batched request timeout", StringComparison.Ordinal)) {
return EResult.RemoteCallFailed;
}
int startIndex = errorText.LastIndexOf('(');
if (startIndex < 0) {