aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-07 02:13:26 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-07 02:13:26 -0400
commite19b8f81c7c9273edaa48c80588b83d8ecffc2f7 (patch)
tree704e6bda3f842a233d4911fafcf363cb9984b241 /Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
parentf8825a41aa9f4a1c8321fa47b061a9959291a0cb (diff)
update recording conversion
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/HttpListenerHost.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs13
1 files changed, 7 insertions, 6 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index 737d4ceea..1d3d4f1e5 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -725,12 +725,13 @@ namespace Emby.Server.Implementations.HttpServer
Summary = route.Summary
});
- //routes.Add(new RouteAttribute(DoubleNormalizeEmbyRoutePath(route.Path), route.Verbs)
- //{
- // Notes = route.Notes,
- // Priority = route.Priority,
- // Summary = route.Summary
- //});
+ // needed because apps add /emby, and some users also add /emby, thereby double prefixing
+ routes.Add(new RouteAttribute(DoubleNormalizeEmbyRoutePath(route.Path), route.Verbs)
+ {
+ Notes = route.Notes,
+ Priority = route.Priority,
+ Summary = route.Summary
+ });
}
return routes.ToArray(routes.Count);