Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/349532151407ef24cc3954ecf1ca19bb0bc698a9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
3 deletions
@ -369,7 +369,7 @@ namespace MediaBrowser.Server.Implementations.IO
lock ( _timerLock )
{
// Extend the timer as long as any of the paths are still being written to.
if ( _affectedPaths . Any ( p = > ! FileSystem . GetFileSystemInfo ( p . Key ) . Attributes . HasFlag ( FileAttributes . ReadOnly ) & & IsFileLocked ( p . Key ) ) )
if ( _affectedPaths . Any ( p = > IsFileLocked ( p . Key ) ) )
{
Logger . Info ( "Timer extended." ) ;
_updateTimer . Change ( TimeSpan . FromSeconds ( ConfigurationManager . Configuration . FileWatcherDelay ) , TimeSpan . FromMilliseconds ( - 1 ) ) ;
@ -400,7 +400,9 @@ namespace MediaBrowser.Server.Implementations.IO
{
var data = FileSystem . GetFileSystemInfo ( path ) ;
if ( ! data . Exists | | data . Attributes . HasFlag ( FileAttributes . Directory ) )
if ( ! data . Exists
| | data . Attributes . HasFlag ( FileAttributes . Directory )
| | data . Attributes . HasFlag ( FileAttributes . ReadOnly ) )
{
return false ;
}
@ -15,7 +15,7 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.Audio
/// <value>The priority.</value>
public override ResolverPriority Priority
{
get { return ResolverPriority . Thir d; } // we need to be ahead of the generic folder resolver but behind the movie one
get { return ResolverPriority . Secon d; } // we need to be ahead of the generic folder resolver but behind the movie one
}
/// <summary>