Skip to content

Commit

Permalink
Merge pull request #34 from bdecentgmbh/dev
Browse files Browse the repository at this point in the history
Fix upgrade path
  • Loading branch information
stefanscholz authored Feb 29, 2024
2 parents f39b960 + 598d62f commit dbfb4f0
Show file tree
Hide file tree
Showing 13 changed files with 107 additions and 25 deletions.
2 changes: 1 addition & 1 deletion actions/notification/classes/task/notify_users.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public static function is_suppress_reached($notification, $userid, $course, $com
$cminfo = get_coursemodule_from_id('', $cmid);
$modulecompletion = (array) $completion->get_data($cminfo, false, $userid);
}
if ($modulecompletion['completionstate'] == COMPLETION_COMPLETE) {
if (isset($modulecompletion['completionstate']) == COMPLETION_COMPLETE) {
$result[] = true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion amd/build/automation.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion amd/build/completion.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion amd/build/events.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit dbfb4f0

Please sign in to comment.