Skip to content

Commit

Permalink
fix tc
Browse files Browse the repository at this point in the history
  • Loading branch information
Kukks committed Apr 9, 2024
1 parent d00a9d7 commit 71cb4c3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PropertyGroup>
<Product>Coinjoin</Product>
<Description>Allows you to integrate your btcpayserver store with coinjoins.</Description>
<Version>1.0.75</Version>
<Version>1.0.76</Version>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,15 @@ public async Task StopAsync(CancellationToken cancellationToken)
{
if (termsConditions is null && name == "zksnacks")
{
termsConditions = new HttpClient().GetStringAsync("https://wasabiwallet.io/api/v4/Wasabi/legaldocuments?id=ww2")
.Result;
try
{
termsConditions = new HttpClient().GetStringAsync("https://wasabiwallet.io/api/v4/Wasabi/legaldocuments?id=ww2")
.Result;
}
catch (Exception e)
{
}


}
if (HostedServices.ContainsKey(name))
Expand Down

0 comments on commit 71cb4c3

Please sign in to comment.