mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	Merge pull request #7376 from GermanCoding/fix_soundhandler
This commit is contained in:
		
						commit
						7d226e8eef
					
				@ -45,6 +45,7 @@
 | 
				
			|||||||
 - [Froghut](https://github.com/Froghut)
 | 
					 - [Froghut](https://github.com/Froghut)
 | 
				
			||||||
 - [fruhnow](https://github.com/fruhnow)
 | 
					 - [fruhnow](https://github.com/fruhnow)
 | 
				
			||||||
 - [geilername](https://github.com/geilername)
 | 
					 - [geilername](https://github.com/geilername)
 | 
				
			||||||
 | 
					 - [GermanCoding](https://github.com/GermanCoding)
 | 
				
			||||||
 - [gnattu](https://github.com/gnattu)
 | 
					 - [gnattu](https://github.com/gnattu)
 | 
				
			||||||
 - [GodTamIt](https://github.com/GodTamIt)
 | 
					 - [GodTamIt](https://github.com/GodTamIt)
 | 
				
			||||||
 - [grafixeyehero](https://github.com/grafixeyehero)
 | 
					 - [grafixeyehero](https://github.com/grafixeyehero)
 | 
				
			||||||
 | 
				
			|||||||
@ -691,9 +691,9 @@ namespace MediaBrowser.MediaEncoding.Probing
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
                if (string.IsNullOrEmpty(stream.Title))
 | 
					                if (string.IsNullOrEmpty(stream.Title))
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    // mp4 missing track title workaround: fall back to handler_name if populated
 | 
					                    // mp4 missing track title workaround: fall back to handler_name if populated and not the default "SoundHandler"
 | 
				
			||||||
                    string handlerName = GetDictionaryValue(streamInfo.Tags, "handler_name");
 | 
					                    string handlerName = GetDictionaryValue(streamInfo.Tags, "handler_name");
 | 
				
			||||||
                    if (!string.IsNullOrEmpty(handlerName))
 | 
					                    if (!string.IsNullOrEmpty(handlerName) && !string.Equals(handlerName, "SoundHandler", StringComparison.OrdinalIgnoreCase))
 | 
				
			||||||
                    {
 | 
					                    {
 | 
				
			||||||
                        stream.Title = handlerName;
 | 
					                        stream.Title = handlerName;
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user