diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-04-08 14:00:35 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-04-09 16:46:00 -0400 |
| commit | c079d4b7c26c5cb9e267ac846a186c5dfcde06fa (patch) | |
| tree | bdda8cc7abf72536a2a810fa724f97329f952c16 | |
| parent | 84bc124a5546fb27d2fe13e0193b69df3df9c6a6 (diff) | |
fixes #1609 - Generated links are relative to site root
| -rw-r--r-- | MediaBrowser.Server.Implementations/Social/SharingManager.cs | 2 |
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); |
