From 81e0601905f42f682909c911c8424486eb20dc9b Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Thu, 3 Aug 2023 00:15:30 -0700 Subject: [PATCH 1/2] Speed issue of attendee --- lib/Controller/ContactController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Controller/ContactController.php b/lib/Controller/ContactController.php index 34fce6f51..51cef7e9f 100644 --- a/lib/Controller/ContactController.php +++ b/lib/Controller/ContactController.php @@ -122,7 +122,7 @@ class ContactController extends Controller { } $result = $this->contactsManager->search($search, ['FN', 'EMAIL']); - + echo '
'; print_r($result); die;
 		$contacts = [];
 		foreach ($result as $r) {
 			// Information about system users is fetched via DAV nowadays
-- 
GitLab


From 5746bcc3c94c673716d37ff989b26f4d9991ba20 Mon Sep 17 00:00:00 2001
From: Ronak Patel 
Date: Thu, 3 Aug 2023 00:43:36 -0700
Subject: [PATCH 2/2] test

---
 lib/Controller/ContactController.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Controller/ContactController.php b/lib/Controller/ContactController.php
index 51cef7e9f..8712daf41 100644
--- a/lib/Controller/ContactController.php
+++ b/lib/Controller/ContactController.php
@@ -122,7 +122,7 @@ class ContactController extends Controller {
 		}
 
 		$result = $this->contactsManager->search($search, ['FN', 'EMAIL']);
-		echo '
'; print_r($result); die;
+		
 		$contacts = [];
 		foreach ($result as $r) {
 			// Information about system users is fetched via DAV nowadays
-- 
GitLab