aboutsummaryrefslogtreecommitdiff
path: root/lib.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib.php')
-rw-r--r--lib.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib.php b/lib.php
index e668c04..d2550af 100644
--- a/lib.php
+++ b/lib.php
@@ -114,7 +114,9 @@ function local_webhooks_get_record($serviceid) {
$record = $DB->get_record(LOCAL_WEBHOOKS_TABLE_SERVICES, array("id" => $serviceid), "*", IGNORE_MISSING);
/* Loads service events */
- $record->events = local_webhooks_get_list_events_for_service($serviceid);
+ if (!empty($record)) {
+ $record->events = local_webhooks_get_list_events_for_service($serviceid);
+ }
return $record;
}