diff options
| author | nyanmisaka <nst799610810@gmail.com> | 2020-07-25 00:58:14 +0800 |
|---|---|---|
| committer | nyanmisaka <nst799610810@gmail.com> | 2020-07-25 00:58:14 +0800 |
| commit | 4bdb870d16360502f8fcf7a3176aef1116dd42bb (patch) | |
| tree | 1080dd5faacb73d58ad7b47f8ef6e53f8ccdb9b6 /Emby.Server.Implementations/Services/ServicePath.cs | |
| parent | 7b862bba5aad345f0bc8d76bfb950590471ae232 (diff) | |
| parent | e3db0ac400e7a1a42e7a844a13ab052d26125612 (diff) | |
Merge remote-tracking branch 'upstream/master' into tonemap
Diffstat (limited to 'Emby.Server.Implementations/Services/ServicePath.cs')
| -rw-r--r-- | Emby.Server.Implementations/Services/ServicePath.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Services/ServicePath.cs b/Emby.Server.Implementations/Services/ServicePath.cs index bdda7c089..442b2ab1c 100644 --- a/Emby.Server.Implementations/Services/ServicePath.cs +++ b/Emby.Server.Implementations/Services/ServicePath.cs @@ -156,7 +156,7 @@ namespace Emby.Server.Implementations.Services { var component = components[i]; - if (component.StartsWith(VariablePrefix)) + if (component.StartsWith(VariablePrefix, StringComparison.Ordinal)) { var variableName = component.Substring(1, component.Length - 2); if (variableName[variableName.Length - 1] == WildCardChar) |
