From f17023ecad1f4873933a253b16f14026c1fb6b53 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 2 Mar 2018 13:49:32 -0500 Subject: [PATCH] FullHostname => Host --- src/Core/Enums/UriMatchType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Enums/UriMatchType.cs b/src/Core/Enums/UriMatchType.cs index 12c5f4e714..5694372989 100644 --- a/src/Core/Enums/UriMatchType.cs +++ b/src/Core/Enums/UriMatchType.cs @@ -3,7 +3,7 @@ public enum UriMatchType : byte { Domain = 0, - FullHostname = 1, + Host = 1, StartsWith = 2, Exact = 3, RegularExpression = 4,