diff options
| author | David Fernandez Alcoba <davidfdezalcoba@gmail.com> | 2024-05-06 09:34:40 +0200 |
|---|---|---|
| committer | David Fernandez Alcoba <davidfdezalcoba@gmail.com> | 2024-05-06 09:34:40 +0200 |
| commit | bfa498799bf92b601e0b12a6e0bcd9cebf743477 (patch) | |
| tree | 249793e243bca9f339c508b90507d0e4070a566b /src | |
| parent | 5bf738dafb84ba9753111ed905a32404ebe99276 (diff) | |
Add Not Implemented to m3u tuner
Diffstat (limited to 'src')
| -rw-r--r-- | src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs b/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs index 3307626f4..b78b60c70 100644 --- a/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs +++ b/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs @@ -123,7 +123,7 @@ namespace Jellyfin.LiveTv.TunerHosts return new SharedHttpStream(mediaSource, tunerHost, streamId, FileSystem, _httpClientFactory, Logger, Config, _appHost, _streamHelper); } } - else if (response.StatusCode == HttpStatusCode.MethodNotAllowed) + else if (response.StatusCode == HttpStatusCode.MethodNotAllowed || response.StatusCode == HttpStatusCode.NotImplemented) { // Fallback to check path extension when the server does not support HEAD method // Use UriBuilder to remove all query string as GetExtension will include them when used directly |
