From 3c85ac80c31627c956404bc51e44a1a76d9efc3c Mon Sep 17 00:00:00 2001 From: jbraswell <10187286+jbraswell@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:55:43 -0400 Subject: [PATCH] include deleted meetings in success stats, do not show an error (#465) --- .../server_admin/c_comdef_admin_ajax_handler.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main_server/local_server/server_admin/c_comdef_admin_ajax_handler.class.php b/main_server/local_server/server_admin/c_comdef_admin_ajax_handler.class.php index 3efccb7bd..c9e009a7c 100755 --- a/main_server/local_server/server_admin/c_comdef_admin_ajax_handler.class.php +++ b/main_server/local_server/server_admin/c_comdef_admin_ajax_handler.class.php @@ -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; }