Skip to content

Commit

Permalink
SteamAuth - Rename ConfirmationType enum to the real values
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessecar96 committed Jun 29, 2023
1 parent 5dc64d6 commit 0253c76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Steam Desktop Authenticator/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,8 @@ private async void timerTradesPopup_Tick(object sender, EventArgs e)
Confirmation[] tmp = await acc.FetchConfirmationsAsync();
foreach (var conf in tmp)
{
if ((conf.ConfType == Confirmation.ConfirmationType.MarketSellTransaction && manifest.AutoConfirmMarketTransactions) ||
(conf.ConfType == Confirmation.ConfirmationType.Trade && manifest.AutoConfirmTrades))
if ((conf.ConfType == Confirmation.EMobileConfirmationType.MarketListing && manifest.AutoConfirmMarketTransactions) ||
(conf.ConfType == Confirmation.EMobileConfirmationType.Trade && manifest.AutoConfirmTrades))
{
if (!autoAcceptConfirmations.ContainsKey(acc))
autoAcceptConfirmations[acc] = new List<Confirmation>();
Expand Down
2 changes: 1 addition & 1 deletion lib/SteamAuth

0 comments on commit 0253c76

Please sign in to comment.