Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/806b8b2fe6aa8c14704654c6bdd4737314cf8420
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
32 additions and
2 deletions
@ -50,6 +50,22 @@ namespace MediaBrowser.Controller.Providers.Music
HttpClient = httpClient ;
}
protected override string ProviderVersion
{
get
{
return "3-12-13" ;
}
}
protected override bool RefreshOnVersionChange
{
get
{
return true ;
}
}
/// <summary>
/// Gets the json serializer.
/// </summary>
@ -171,6 +187,12 @@ namespace MediaBrowser.Controller.Providers.Music
return true ;
}
if ( RefreshOnVersionChange & & ProviderVersion ! = providerInfo . ProviderVersion )
{
Logger . Debug ( "LastfmProvider version change re-running for {0}" , item . Path ) ;
return true ;
}
var downloadDate = providerInfo . LastRefreshed ;
if ( ConfigurationManager . Configuration . MetadataRefreshDays = = - 1 & & downloadDate ! = DateTime . MinValue )
@ -206,7 +228,7 @@ namespace MediaBrowser.Controller.Providers.Music
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
{
@ -16,7 +16,15 @@ namespace MediaBrowser.Controller.Providers.Music
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 ;
try
{