Skip to content

Commit 627c457

Browse files
committed
Misc
1 parent a90b5ad commit 627c457

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ArchiSteamFarm/Bot.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,11 +1098,11 @@ private async Task<string> ResponseAddLicense(ulong steamID, ICollection<uint> g
10981098
foreach (uint gameID in gameIDs) {
10991099
SteamApps.FreeLicenseCallback callback = await SteamApps.RequestFreeLicense(gameID);
11001100
if (callback == null) {
1101-
result.AppendLine("Result: Timeout!");
1101+
result.AppendLine(Environment.NewLine + "Result: Timeout!");
11021102
break;
11031103
}
11041104

1105-
result.AppendLine("Result: " + callback.Result + " | Granted apps: " + string.Join(", ", callback.GrantedApps) + " " + string.Join(", ", callback.GrantedPackages));
1105+
result.AppendLine(Environment.NewLine + "Result: " + callback.Result + " | Granted apps: " + string.Join(", ", callback.GrantedApps) + " " + string.Join(", ", callback.GrantedPackages));
11061106
}
11071107

11081108
return result.ToString();

0 commit comments

Comments
 (0)