Fix #2399 - page paths not being validated for deleted pages

This commit is contained in:
Shaun Walker
2022-09-06 10:50:53 -04:00
parent dd170bb41a
commit d1f50f12af
8 changed files with 30 additions and 39 deletions

View File

@ -12,7 +12,9 @@ namespace Oqtane.Maui;
public static class MauiProgram
{
// can be overridden in an appsettings.json in AppDataDirectory
static string url = (DeviceInfo.Platform == DevicePlatform.Android) ? "http://10.0.2.2:44357" : "http://localhost:44357";
static string url = (DeviceInfo.Platform == DevicePlatform.Android)
? "http://10.0.2.2:44357"
: "http://localhost:44357";
public static MauiApp CreateMauiApp()
{