catch auth exceptions

This commit is contained in:
friendica 2014-01-20 01:03:58 -08:00
parent d5bf53c54c
commit fdfea0a8e9
2 changed files with 8 additions and 3 deletions

View file

@ -80,9 +80,14 @@ function cloud_init(&$a) {
$server->addPlugin($lockPlugin);
if(! $auth->observer)
$auth->Authenticate($server,'Red Matrix');
if(! $auth->observer) {
try {
$auth->Authenticate($server,'Red Matrix');
}
catch ( Exception $e) {
}
}
// $browser = new DAV\Browser\Plugin();
$browser = new RedBrowser($auth);

View file

@ -1 +1 @@
2014-01-19.562
2014-01-20.563