properly unlock trakt (#1035)

This commit is contained in:
Jason Dove
2022-11-23 18:34:55 -06:00
committed by GitHub
parent e388f81e1f
commit 47fbb2b1b7
17 changed files with 38 additions and 29 deletions
+1 -1
View File
@@ -104,7 +104,7 @@
var parameters = new DialogParameters { { "EntityType", "channel" }, { "EntityName", channel.Name } };
var options = new DialogOptions { CloseButton = true, MaxWidth = MaxWidth.ExtraSmall };
IDialogReference dialog = _dialog.Show<DeleteDialog>("Delete Channel", parameters, options);
IDialogReference dialog = await _dialog.ShowAsync<DeleteDialog>("Delete Channel", parameters, options);
DialogResult result = await dialog.Result;
if (!result.Cancelled)
{