diff --git a/src/BD.WTTS.Client/Services/Mvvm/Advertisement/AdvertiseService.cs b/src/BD.WTTS.Client/Services/Mvvm/Advertisement/AdvertiseService.cs index 0a6d134216e..3903bda79e3 100644 --- a/src/BD.WTTS.Client/Services/Mvvm/Advertisement/AdvertiseService.cs +++ b/src/BD.WTTS.Client/Services/Mvvm/Advertisement/AdvertiseService.cs @@ -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); } }