blob: 7ad89e1a069c7a92f307d5351c30449c2610155a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
diff --git a/xbmc/filesystem/CurlFile.cpp b/xbmc/filesystem/CurlFile.cpp
index c308649..25af47e 100644
--- a/xbmc/filesystem/CurlFile.cpp
+++ b/xbmc/filesystem/CurlFile.cpp
@@ -1528,8 +1528,9 @@ bool CCurlFile::CReadState::FillBuffer(unsigned int want)
msg->data.result == CURLE_RECV_ERROR) &&
!m_bFirstLoop)
CURLresult = msg->data.result;
- else if ( (msg->data.result == CURLE_HTTP_RANGE_ERROR ||
- httpCode == 416 /* = Requested Range Not Satisfiable */) &&
+ else if ( (msg->data.result == CURLE_HTTP_RANGE_ERROR ||
+ httpCode == 416 /* = Requested Range Not Satisfiable */ ||
+ httpCode == 406 /* = Not Acceptable (fixes issues with non compliant HDHomerun servers */) &&
m_bFirstLoop &&
m_filePos == 0 &&
m_sendRange)
|