aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Social
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-08 14:00:35 -0400
commit3889bc0a115070892dcfb60fda7d8802d6edc242 (patch)
treea14785119d2b6586a4b0604713df9646d277503a /MediaBrowser.Server.Implementations/Social
parent465824a5edf75578d64c0e2b1c68d019e793c92a (diff)
fixes #1609 - Generated links are relative to site root
Diffstat (limited to 'MediaBrowser.Server.Implementations/Social')
-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);