overrides ToString on UrlInfo to return the correct result

This commit is contained in:
Shannon
2019-03-12 12:47:37 +11:00
parent cefff71edf
commit 95d1ceb529

View File

@@ -93,5 +93,10 @@ namespace Umbraco.Web.Routing
{
return !Equals(left, right);
}
public override string ToString()
{
return Text;
}
}
}