Skip to content

Commit 22f0d42

Browse files
committed
Closes #205
1 parent f1d7609 commit 22f0d42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ArchiSteamFarm/ArchiHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ internal PurchaseResponseCallback(JobID jobID, CMsgClientPurchaseResponse msg) {
153153

154154
foreach (KeyValue lineItem in lineItems) {
155155
uint appID = (uint) lineItem["PackageID"].AsUnsignedLong();
156-
string gameName = lineItem["ItemDescription"].AsString();
157-
gameName = WebUtility.UrlDecode(gameName); // Apparently steam expects client to decode sent HTML
156+
string gameName = lineItem["ItemDescription"].Value;
157+
gameName = WebUtility.HtmlDecode(gameName); // Apparently steam expects client to decode sent HTML
158158
Items.Add(appID, gameName);
159159
}
160160
}

0 commit comments

Comments
 (0)