mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	3.2.19.6
This commit is contained in:
		
							parent
							
								
									9544221b94
								
							
						
					
					
						commit
						46b9ebd48e
					
				@ -53,6 +53,17 @@ namespace MediaBrowser.Providers.Omdb
 | 
				
			|||||||
                OmdbProvider.RootObject rootObject = await provider.GetRootObject(imdbId, cancellationToken).ConfigureAwait(false);
 | 
					                OmdbProvider.RootObject rootObject = await provider.GetRootObject(imdbId, cancellationToken).ConfigureAwait(false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (!string.IsNullOrEmpty(rootObject.Poster))
 | 
					                if (!string.IsNullOrEmpty(rootObject.Poster))
 | 
				
			||||||
 | 
					                {
 | 
				
			||||||
 | 
					                    if (item is Episode)
 | 
				
			||||||
 | 
					                    {
 | 
				
			||||||
 | 
					                        // img.omdbapi.com returning 404's
 | 
				
			||||||
 | 
					                        list.Add(new RemoteImageInfo
 | 
				
			||||||
 | 
					                        {
 | 
				
			||||||
 | 
					                            ProviderName = Name,
 | 
				
			||||||
 | 
					                            Url = rootObject.Poster
 | 
				
			||||||
 | 
					                        });
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                    else
 | 
				
			||||||
                    {
 | 
					                    {
 | 
				
			||||||
                        list.Add(new RemoteImageInfo
 | 
					                        list.Add(new RemoteImageInfo
 | 
				
			||||||
                        {
 | 
					                        {
 | 
				
			||||||
@ -61,6 +72,7 @@ namespace MediaBrowser.Providers.Omdb
 | 
				
			|||||||
                        });
 | 
					                        });
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            return list;
 | 
					            return list;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
@ -23,14 +23,14 @@ namespace MediaBrowser.Server.Startup.Common
 | 
				
			|||||||
        {
 | 
					        {
 | 
				
			||||||
            if (!startupOptions.ContainsOption("-enablegdi"))
 | 
					            if (!startupOptions.ContainsOption("-enablegdi"))
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                //try
 | 
					                try
 | 
				
			||||||
                //{
 | 
					                {
 | 
				
			||||||
                //    return new SkiaEncoder(logManager.GetLogger("Skia"), appPaths, httpClient, fileSystem);
 | 
					                    return new SkiaEncoder(logManager.GetLogger("Skia"), appPaths, httpClient, fileSystem);
 | 
				
			||||||
                //}
 | 
					                }
 | 
				
			||||||
                //catch
 | 
					                catch
 | 
				
			||||||
                //{
 | 
					                {
 | 
				
			||||||
                //    logger.Error("Error loading Skia. Will revert to ImageMagick.");
 | 
					                    logger.Error("Error loading Skia. Will revert to ImageMagick.");
 | 
				
			||||||
                //}
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                try
 | 
					                try
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,3 +1,3 @@
 | 
				
			|||||||
using System.Reflection;
 | 
					using System.Reflection;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[assembly: AssemblyVersion("3.2.19.5")]
 | 
					[assembly: AssemblyVersion("3.2.19.6")]
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user