Browse Source

remove uri check.

pull/5639/head
Dan Walmsley 5 years ago
parent
commit
6ee69afd0d
  1. 2
      src/Avalonia.Controls/ApplicationLifetimes/ClassicDesktopStyleApplicationLifetime.cs

2
src/Avalonia.Controls/ApplicationLifetimes/ClassicDesktopStyleApplicationLifetime.cs

@ -104,7 +104,7 @@ namespace Avalonia.Controls.ApplicationLifetimes
{
Startup?.Invoke(this, new ControlledApplicationLifetimeStartupEventArgs(args));
if (args.Length > 0 && Uri.TryCreate(args[0], UriKind.Absolute, out _))
if (args.Length > 0))
{
((IApplicationPlatformEvents)Application.Current).RaiseUrlsOpened(args);
}

Loading…
Cancel
Save