From e243a066b1b3c2fa5f73137812cc566c8f4a5aa6 Mon Sep 17 00:00:00 2001 From: Christian Hewitt Date: Sat, 23 Feb 2013 08:40:01 +0400 Subject: [PATCH] fix xbmc connection-check patch Checking releases.openelec.tv returns a 403 error as directory listings are denied. XBMC interprets this as a failure resulting in "Connected, but no DNS available" in system info. We now use online.openelec.tv which does not return an error. --- .../xbmc/patches/xbmc-457-fix_connection_check-0.1.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch b/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch index e2ff800e71..2bb87be74e 100644 --- a/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch +++ b/packages/mediacenter/xbmc/patches/xbmc-457-fix_connection_check-0.1.patch @@ -6,10 +6,10 @@ diff -Naur a/xbmc/filesystem/CurlFile.cpp b/xbmc/filesystem/CurlFile.cpp bool CFileCurl::IsInternet(bool checkDNS /* = true */) { - CStdString strURL = "http://www.google.com"; -+ CStdString strURL = "http://releases.openelec.tv"; ++ CStdString strURL = "http://online.openelec.tv"; if (!checkDNS) - strURL = "http://74.125.19.103"; // www.google.com ip -+ strURL = "http://212.101.13.11"; // openelec.tv ip ++ strURL = "http://212.101.13.11"; // online.openelec.tv ip bool found = Exists(strURL); Close();