aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-04-08 14:00:35 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-04-09 16:46:00 -0400
commitc079d4b7c26c5cb9e267ac846a186c5dfcde06fa (patch)
treebdda8cc7abf72536a2a810fa724f97329f952c16
parent84bc124a5546fb27d2fe13e0193b69df3df9c6a6 (diff)
fixes #1609 - Generated links are relative to site root
-rw-r--r--MediaBrowser.Server.Implementations/Social/SharingManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Social/SharingManager.cs b/MediaBrowser.Server.Implementations/Social/SharingManager.cs
index 326b2893c..2ffd33ca4 100644
--- a/MediaBrowser.Server.Implementations/Social/SharingManager.cs
+++ b/MediaBrowser.Server.Implementations/Social/SharingManager.cs
@@ -84,7 +84,7 @@ namespace MediaBrowser.Server.Implementations.Social
var externalUrl = _appHost.GetSystemInfo().WanAddress;
info.ImageUrl = externalUrl + "/Social/Shares/Public/" + info.Id + "/Image";
- info.Url = externalUrl + "/web/shared.html?id=" + info.Id;
+ info.Url = externalUrl + "/emby/web/shared.html?id=" + info.Id;
var item = _libraryManager.GetItemById(info.ItemId);