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-08 14:00:35 -0400 |
| commit | 3889bc0a115070892dcfb60fda7d8802d6edc242 (patch) | |
| tree | a14785119d2b6586a4b0604713df9646d277503a /MediaBrowser.Server.Implementations/Social | |
| parent | 465824a5edf75578d64c0e2b1c68d019e793c92a (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.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); |
