mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-23 10:36:43 +00:00
update people editing
This commit is contained in:
@@ -235,10 +235,18 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
|
||||
}
|
||||
else
|
||||
{
|
||||
numberString = Path.GetFileNameWithoutExtension(mediaUrl.Split('/').Last());
|
||||
|
||||
if (!IsValidChannelNumber(numberString))
|
||||
try
|
||||
{
|
||||
numberString = Path.GetFileNameWithoutExtension(mediaUrl.Split('/').Last());
|
||||
|
||||
if (!IsValidChannelNumber(numberString))
|
||||
{
|
||||
numberString = null;
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
// Seeing occasional argument exception here
|
||||
numberString = null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user