Skip to content

Commit

Permalink
Fix #14
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1372 committed Dec 12, 2024
1 parent 4c05de0 commit 39f11ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/DevWinUI.Controls/Converters/StringToUriConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public object Convert(object value, Type targetType, object parameter, string la
{
if (uri.StartsWith("ms-appx:///"))
{
return uri;
return new Uri(uri);
}
if (uri.StartsWith("/"))
{
Expand Down

0 comments on commit 39f11ed

Please sign in to comment.