fix: forgetting to reverse the modification of REST
This commit is contained in:
parent
24bfbcfa2c
commit
8d66ec00a2
1 changed files with 1 additions and 1 deletions
|
|
@ -398,7 +398,7 @@ namespace Rests
|
||||||
for (int i = 0; i < com.UriVerbs.Length; i++)
|
for (int i = 0; i < com.UriVerbs.Length; i++)
|
||||||
verbs.Add(com.UriVerbs[i], match.Groups[i + 1].Value);
|
verbs.Add(com.UriVerbs[i], match.Groups[i + 1].Value);
|
||||||
}
|
}
|
||||||
else if (string.Equals(com.UriTemplate, uri, StringComparison.OrdinalIgnoreCase))
|
else if (!string.Equals(com.UriTemplate, uri, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue