Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/07751895a18380b48e6cdfb2ad5b1bfc14cb5b5b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
8 deletions
@ -2206,17 +2206,19 @@ namespace Emby.Server.Implementations
/// <returns>Task{CheckForUpdateResult}.</returns>
public async Task < CheckForUpdateResult > CheckForApplicationUpdate ( CancellationToken cancellationToken , IProgress < double > progress )
{
var cacheLength = TimeSpan . FromMinutes ( 5 ) ;
var updateLevel = SystemUpdateLevel ;
var cacheLength = updateLevel = = PackageVersionClass . Release ?
TimeSpan . FromHours ( 4 ) :
TimeSpan . FromMinutes ( 5 ) ;
var result = await new GithubUpdater ( HttpClient , JsonSerializer ) . CheckForUpdateResult ( "MediaBrowser" ,
"Emby" ,
ApplicationVersion ,
var result = await new GithubUpdater ( HttpClient , JsonSerializer ) . CheckForUpdateResult ( "MediaBrowser" ,
"Emby" ,
ApplicationVersion ,
updateLevel ,
ReleaseAssetFilename ,
"MBServer" ,
UpdateTargetFileName ,
cacheLength ,
UpdateTargetFileName ,
cacheLength ,
cancellationToken ) . ConfigureAwait ( false ) ;
HasUpdateAvailable = result . IsUpdateAvailable ;
@ -50,7 +50,9 @@ namespace MediaBrowser.Controller.LiveTv
public static double? GetDefaultPrimaryImageAspectRatio ( IHasProgramAttributes item )
{
var serviceName = item . ServiceName ;
if ( ! item . IsMovie & & ! string . Equals ( serviceName , EmbyServiceName , StringComparison . OrdinalIgnoreCase ) )
if ( ! item . IsMovie
& & ! string . Equals ( serviceName , EmbyServiceName , StringComparison . OrdinalIgnoreCase )
& & ! string . Equals ( serviceName , "Next Pvr" , StringComparison . OrdinalIgnoreCase ) )
{
double value = 16 ;
value / = 9 ;
@ -1,3 +1,3 @@
using System.Reflection ;
[assembly: AssemblyVersion("3.2.30.2 6 ")]
[assembly: AssemblyVersion("3.2.30.2 7 ")]