geel9 / SteamAuth

A C# library that provides vital Steam Mobile Authenticator functionality
MIT License
276 stars 102 forks source link

Fix Confirmation.ConfType error #96

Closed sy1989 closed 1 year ago

sy1989 commented 1 year ago

Set ConfirmationType.Unknown = 0,then other ConfirmationType will be corrent

Jessecar96 commented 1 year ago

Thanks for the fix!

Ne3tCode commented 1 year ago

Add other types then

enum EMobileConfirmationType
{
    Invalid = 0;
    Test = 1;
    Trade = 2;
    MarketListing = 3;
    FeatureOptOut = 4;
    PhoneNumberChange = 5;
    AccountRecovery = 6;
}

Source: mobile app dump at SteamDB repo

Jessecar96 commented 1 year ago

Thanks for the link. I wasn't aware this was documented anywhere.