From a192beb3789f610854fe31d1653d5642633894c3 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 5 Jul 2025 08:25:56 -0400 Subject: [PATCH] Contacts data text fix --- app/api/services/contacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/services/contacts.py b/app/api/services/contacts.py index 7294739..5020e52 100644 --- a/app/api/services/contacts.py +++ b/app/api/services/contacts.py @@ -51,7 +51,7 @@ class ContactService(BaseService): calDate = datetime.datetime.utcnow() + datetime.timedelta(minutes=180 * random.randint(1, 20)) new_l = { "uid": "425611f2-c692-4404-b93d-76ca7a5ce7" + str(x), - "title": "Calendar Random Item on " + str(x), + "title": "Contact Random Item on " + str(x), "category": cat_list[random.randint(0, 3)], "added": calDate, "sender": "Firstname Lastname" + str(random.randint(1, 4)),