Skip to content

Commit

Permalink
include deleted meetings in success stats, do not show an error (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbraswell authored Aug 25, 2022
1 parent 3a8113b commit 3c85ac8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,9 @@ public function HandleMeetingWorldIDsUpdate()
if (!array_key_exists($bmltId, $meetings)) {
if (strtolower($newWorldId) == 'deleted') {
$this->UpdatePossiblyDeletedMeeting($bmltId, $ret, $isServerAdmin, $userServiceBodyIDs);
$ret['report']['updated'][] = $bmltId;
} else {
$ret['report']['problem'][] = $bmltId;
$ret['report']['not_updated'][] = $bmltId;
}
continue;
}
Expand Down

0 comments on commit 3c85ac8

Please sign in to comment.