handle numeric input (#11885)

This commit is contained in:
Davide Giacometti
2021-07-05 16:26:31 +02:00
committed by GitHub
parent 370e8c8574
commit 3f70c8c889
2 changed files with 4 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Linq;
using Microsoft.Plugin.Uri.Interfaces;
namespace Microsoft.Plugin.Uri.UriHelper
@@ -21,7 +22,8 @@ namespace Microsoft.Plugin.Uri.UriHelper
// Using CurrentCulture since this is a user typed string
if (input.EndsWith(":", StringComparison.CurrentCulture)
|| input.EndsWith(".", StringComparison.CurrentCulture)
|| input.EndsWith(":/", StringComparison.CurrentCulture))
|| input.EndsWith(":/", StringComparison.CurrentCulture)
|| input.All(char.IsDigit))
{
result = default;
return false;