Skip to content

Commit

Permalink
Ignore vanished resources when deleting events.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Aug 11, 2017
1 parent 62c5ee4 commit 79f767c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kronolith/lib/Driver.php
Expand Up @@ -491,7 +491,9 @@ public function deleteEvent($eventId, $silent = false)
try {
$r = $rd->getResource($uid);
$r->removeEvent($event);
} catch (Kronolith_Exception $e) {}
} catch (Horde_Exception_NotFound $e) {
} catch (Kronolith_Exception $e) {
}
}
}
}
Expand Down

0 comments on commit 79f767c

Please sign in to comment.