mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Needed more work on #22 strip html tags from overviews
This commit is contained in:
parent
40501ac1f3
commit
806b8b2fe6
@ -50,6 +50,22 @@ namespace MediaBrowser.Controller.Providers.Music
|
|||||||
HttpClient = httpClient;
|
HttpClient = httpClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override string ProviderVersion
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return "3-12-13";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override bool RefreshOnVersionChange
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the json serializer.
|
/// Gets the json serializer.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -171,6 +187,12 @@ namespace MediaBrowser.Controller.Providers.Music
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (RefreshOnVersionChange && ProviderVersion != providerInfo.ProviderVersion)
|
||||||
|
{
|
||||||
|
Logger.Debug("LastfmProvider version change re-running for {0}", item.Path);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
var downloadDate = providerInfo.LastRefreshed;
|
var downloadDate = providerInfo.LastRefreshed;
|
||||||
|
|
||||||
if (ConfigurationManager.Configuration.MetadataRefreshDays == -1 && downloadDate != DateTime.MinValue)
|
if (ConfigurationManager.Configuration.MetadataRefreshDays == -1 && downloadDate != DateTime.MinValue)
|
||||||
@ -206,7 +228,7 @@ namespace MediaBrowser.Controller.Providers.Music
|
|||||||
|
|
||||||
cancellationToken.ThrowIfCancellationRequested();
|
cancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
if (!ConfigurationManager.Configuration.SaveLocalMeta || !HasLocalMeta(item) || (force && !HasLocalMeta(item)))
|
if (!ConfigurationManager.Configuration.SaveLocalMeta || !HasLocalMeta(item) || (force && !HasLocalMeta(item)) || (RefreshOnVersionChange && item.ProviderData[Id].ProviderVersion != ProviderVersion))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -16,7 +16,15 @@ namespace MediaBrowser.Controller.Providers.Music
|
|||||||
|
|
||||||
public static void ProcessArtistData(BaseItem artist, LastfmArtist data)
|
public static void ProcessArtistData(BaseItem artist, LastfmArtist data)
|
||||||
{
|
{
|
||||||
artist.Overview = data.bio != null ? data.bio.content : null;
|
var overview = data.bio != null ? data.bio.content : null;
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(overview))
|
||||||
|
{
|
||||||
|
overview = StripHtml(overview);
|
||||||
|
}
|
||||||
|
|
||||||
|
artist.Overview = overview;
|
||||||
|
|
||||||
var yearFormed = 0;
|
var yearFormed = 0;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user