Skip to content

Commit 0253c76

Browse files
committed
SteamAuth - Rename ConfirmationType enum to the real values
1 parent 5dc64d6 commit 0253c76

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Steam Desktop Authenticator/MainForm.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,8 +472,8 @@ private async void timerTradesPopup_Tick(object sender, EventArgs e)
472472
Confirmation[] tmp = await acc.FetchConfirmationsAsync();
473473
foreach (var conf in tmp)
474474
{
475-
if ((conf.ConfType == Confirmation.ConfirmationType.MarketSellTransaction && manifest.AutoConfirmMarketTransactions) ||
476-
(conf.ConfType == Confirmation.ConfirmationType.Trade && manifest.AutoConfirmTrades))
475+
if ((conf.ConfType == Confirmation.EMobileConfirmationType.MarketListing && manifest.AutoConfirmMarketTransactions) ||
476+
(conf.ConfType == Confirmation.EMobileConfirmationType.Trade && manifest.AutoConfirmTrades))
477477
{
478478
if (!autoAcceptConfirmations.ContainsKey(acc))
479479
autoAcceptConfirmations[acc] = new List<Confirmation>();

0 commit comments

Comments
 (0)