fix: pixiview:// scheme issue
This commit is contained in:
parent
9859c56da6
commit
c271063390
@ -131,7 +131,7 @@ namespace Pixiview
|
||||
if (current != null && uri != null)
|
||||
{
|
||||
var url = uri.AbsolutePath;
|
||||
if (uri.Scheme == "pixiview://")
|
||||
if ("pixiview".Equals(uri.Scheme, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
var m = Regex.Match(url, "/artworks/([0-9]+)", RegexOptions.IgnoreCase);
|
||||
if (m.Success)
|
||||
|
Loading…
x
Reference in New Issue
Block a user