Skip to content

Commit

Permalink
🐛 fix ClickAd OpenBrowserCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbadmin committed Nov 27, 2024
1 parent a0279bf commit 593c170
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ public async Task RefrshAdvertiseAsync()
}
}

static async void ClickAdvertisement(AdvertisementDTO? dto)
static void ClickAdvertisement(AdvertisementDTO? dto)
{
if (dto != null)
{
//IApplication.Instance.OpenBrowserCommandCore(dto.Url);
await Browser2.OpenAsync(dto.Url);
IApplication.Instance.OpenBrowserCommandCore(dto.Url);
//await Browser2.OpenAsync(dto.Url);
}
}

Expand Down

0 comments on commit 593c170

Please sign in to comment.