diff --git a/ErsatzTV/ErsatzTV.csproj b/ErsatzTV/ErsatzTV.csproj index 9f2d2c84b..1cc9a703e 100644 --- a/ErsatzTV/ErsatzTV.csproj +++ b/ErsatzTV/ErsatzTV.csproj @@ -70,7 +70,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/ErsatzTV/Pages/MultiSelectBase.cs b/ErsatzTV/Pages/MultiSelectBase.cs index 78ea6833f..36537a363 100644 --- a/ErsatzTV/Pages/MultiSelectBase.cs +++ b/ErsatzTV/Pages/MultiSelectBase.cs @@ -112,7 +112,7 @@ public class MultiSelectBase : FragmentNavigationBase { { "EntityType", count.ToString() }, { "EntityName", entityName } }; var options = new DialogOptions { CloseButton = true, MaxWidth = MaxWidth.ExtraSmall }; - IDialogReference dialog = Dialog.Show("Add To Collection", parameters, options); + IDialogReference dialog = await Dialog.ShowAsync("Add To Collection", parameters, options); DialogResult result = await dialog.Result; if (!result.Cancelled && result.Data is MediaCollectionViewModel collection) { @@ -150,7 +150,7 @@ public class MultiSelectBase : FragmentNavigationBase { { "EntityType", SelectedItems.Count.ToString() }, { "EntityName", "selected items" } }; var options = new DialogOptions { CloseButton = true, MaxWidth = MaxWidth.ExtraSmall }; - IDialogReference dialog = Dialog.Show( + IDialogReference dialog = await Dialog.ShowAsync( "Remove From Collection", parameters, options); diff --git a/ErsatzTV/Startup.cs b/ErsatzTV/Startup.cs index f9e1fe39d..d21d7e84f 100644 --- a/ErsatzTV/Startup.cs +++ b/ErsatzTV/Startup.cs @@ -107,11 +107,11 @@ public class Startup configuration.AppVersion = Assembly.GetEntryAssembly() ?.GetCustomAttribute() ?.InformationalVersion ?? "unknown"; - configuration.AutoNotify = false; + configuration.AutoNotify = true; configuration.NotifyReleaseStages = new[] { "public", "develop" }; -#if DEBUG +#if DEBUG || DEBUG_NO_SYNC configuration.ReleaseStage = "develop"; #else // effectively "disable" by tweaking app config