From ab9f0c1bf1f8930b9cbbf592efe69c68654f35c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 31 Mar 2025 02:45:49 +0200 Subject: [PATCH] =?UTF-8?q?fix(calendar):=20Fix=20typo=20Jisti=20=C3=97=20?= =?UTF-8?q?Jitsi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- SoObjects/SOGo/SOGoDomainDefaults.h | 2 +- SoObjects/SOGo/SOGoDomainDefaults.m | 2 +- UI/PreferencesUI/UIxJSONPreferences.m | 4 ++-- UI/WebServerResources/js/Scheduler/Component.service.js | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/SoObjects/SOGo/SOGoDomainDefaults.h b/SoObjects/SOGo/SOGoDomainDefaults.h index d8e8dff4e..c830ab870 100644 --- a/SoObjects/SOGo/SOGoDomainDefaults.h +++ b/SoObjects/SOGo/SOGoDomainDefaults.h @@ -78,7 +78,7 @@ - (BOOL) appointmentSendEMailNotifications; - (BOOL) foldersSendEMailNotifications; - (NSArray *) calendarDefaultRoles; -- (NSString *) calendarJistiBaseUrl; +- (NSString *) calendarJitsiBaseUrl; - (NSString *) calendarJitsiRoomPrefix; - (NSArray *) contactsDefaultRoles; - (NSArray *) refreshViewIntervals; diff --git a/SoObjects/SOGo/SOGoDomainDefaults.m b/SoObjects/SOGo/SOGoDomainDefaults.m index 233735f68..1c073cdca 100644 --- a/SoObjects/SOGo/SOGoDomainDefaults.m +++ b/SoObjects/SOGo/SOGoDomainDefaults.m @@ -169,7 +169,7 @@ return [self stringArrayForKey: @"SOGoCalendarDefaultRoles"]; } -- (NSString *) calendarJistiBaseUrl +- (NSString *) calendarJitsiBaseUrl { NSString *jitsiBaseUrl; jitsiBaseUrl = [self stringForKey: @"SOGoCalendarJitsiBaseUrl"]; diff --git a/UI/PreferencesUI/UIxJSONPreferences.m b/UI/PreferencesUI/UIxJSONPreferences.m index 95e41a051..4c81ba2cf 100644 --- a/UI/PreferencesUI/UIxJSONPreferences.m +++ b/UI/PreferencesUI/UIxJSONPreferences.m @@ -334,12 +334,12 @@ static SoProduct *preferencesProduct = nil; [defaults setCalendarCategoriesColors: colors]; } } - // Add the jisti link if needed + // Add the jitsi link if needed sd = [SOGoSystemDefaults sharedSystemDefaults]; if([sd isCalendarJitsiLinkEnabled]) { if (![[defaults source] objectForKey: @"SOGoCalendarJitsiBaseUrl"]) - [[defaults source] setObject: [domainDefaults calendarJistiBaseUrl] forKey: @"SOGoCalendarJitsiBaseUrl"]; + [[defaults source] setObject: [domainDefaults calendarJitsiBaseUrl] forKey: @"SOGoCalendarJitsiBaseUrl"]; if (![[defaults source] objectForKey: @"SOGoCalendarJitsiRoomPrefix"]) [[defaults source] setObject: [domainDefaults calendarJitsiRoomPrefix] forKey: @"SOGoCalendarJitsiRoomPrefix"]; } diff --git a/UI/WebServerResources/js/Scheduler/Component.service.js b/UI/WebServerResources/js/Scheduler/Component.service.js index 1c0946417..8b19b56c8 100644 --- a/UI/WebServerResources/js/Scheduler/Component.service.js +++ b/UI/WebServerResources/js/Scheduler/Component.service.js @@ -840,8 +840,8 @@ /** * @function hasJitsiUrl * @memberof Component.prototype - * @desc Check if the there is a jisti url - * @returns true if there is a jisti url + * @desc Check if the there is a jitsi url + * @returns true if there is a jitsi url */ Component.prototype.hasJitsiUrl = function() { if (angular.isUndefined(this.attachUrls)) {