diff options
Diffstat (limited to 'Auth/Yadis/XRIRes.php')
-rw-r--r-- | Auth/Yadis/XRIRes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Auth/Yadis/XRIRes.php b/Auth/Yadis/XRIRes.php index b90591f..4e8e8d0 100644 --- a/Auth/Yadis/XRIRes.php +++ b/Auth/Yadis/XRIRes.php @@ -44,7 +44,7 @@ class Auth_Yadis_ProxyResolver { foreach ($service_types as $service_type) { $url = $this->queryURL($xri, $service_type); $response = $this->fetcher->get($url); - if ($response->status != 200) { + if ($response->status != 200 and $response->status != 206) { continue; } $xrds = Auth_Yadis_XRDS::parseXRDS($response->body); @@ -69,4 +69,4 @@ class Auth_Yadis_ProxyResolver { } } -?>
\ No newline at end of file +?> |