Reverts changes to forum URLs

- restores the original URL for some comments, keeping context
This commit is contained in:
Anthony Lavado 2018-12-11 01:42:52 -05:00
parent 71b8602a3d
commit 99482f0736
2 changed files with 2 additions and 2 deletions

View file

@ -287,7 +287,7 @@ namespace MediaBrowser.Providers.Movies
if (!string.IsNullOrEmpty(language)) if (!string.IsNullOrEmpty(language))
{ {
// They require this to be uppercase // They require this to be uppercase
// /community/index.php?/topic/32454-fr-follow-tmdbs-new-language-api-update/?p=311148 // https://emby.media/community/index.php?/topic/32454-fr-follow-tmdbs-new-language-api-update/?p=311148
var parts = language.Split('-'); var parts = language.Split('-');
if (parts.Length == 2) if (parts.Length == 2)

View file

@ -353,7 +353,7 @@ namespace MediaBrowser.XbmcMetadata.Savers
if (!string.IsNullOrEmpty(stream.Language)) if (!string.IsNullOrEmpty(stream.Language))
{ {
// /community/index.php?/topic/49071-nfo-not-generated-on-actualize-or-rescan-or-identify // https://emby.media/community/index.php?/topic/49071-nfo-not-generated-on-actualize-or-rescan-or-identify
writer.WriteElementString("language", RemoveInvalidXMLChars(stream.Language)); writer.WriteElementString("language", RemoveInvalidXMLChars(stream.Language));
} }