Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chr233 committed Feb 19, 2024
1 parent cceb78c commit c7a06bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ASFEnhance/Profile/WebRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ internal static async Task<bool> CraftBadge(Bot bot, SemaphoreSlim semaphore, ui
return null;
}

var tooltip = response.Content.QuerySelector("#header_wallet_balance>span.tooltip")?.TextContent;
var tooltip = response.Content.QuerySelector("#header_wallet_balance>span.tooltip")?.GetAttribute("data-tooltip-html");
if (!string.IsNullOrEmpty(tooltip) && bot.WalletBalanceDelayed > 0)
{
var match = RegexUtils.MatchWalletTooltips().Match(tooltip);
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>2.0.13.1</Version>
<Version>2.0.13.2</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit c7a06bb

Please sign in to comment.