ungana

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README

commit fe679dcdb6aa9ef240445d9c4a4897ef7c84dca9
parent 31821d22b046fa68a16b1348639082159dcc30cf
Author: Carlosokumu <carlosokumu254@gmail.com>
Date:   Mon, 25 Aug 2025 16:11:50 +0300

use ungana as the domain name

Diffstat:
Mungana/ical/ical_manager.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ungana/ical/ical_manager.py b/ungana/ical/ical_manager.py @@ -112,7 +112,7 @@ class ICalManager: def _generate_uid(self) -> str: """Generate a globally unique UID using UUID + domain style.""" - domain = "calendarapp.org" # you can set this to your app's domain + domain = "ungana.org" return f"{uuid.uuid4()}@{domain}" @@ -122,7 +122,7 @@ class ICalManager: ## return a new Calendar instance if the provided ical_path is missing cal = Calendar() cal.add('VERSION', '2.0') - cal.add('PRODID', '-//CalendarApp//mxm.dk//') + cal.add('PRODID', '-//Ungana//mxm.dk//') return cal try: