fix(calendar): Fix typo Jisti × Jitsi

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
This commit is contained in:
Slávek Banko
2025-03-31 02:45:49 +02:00
committed by QHivert
parent 4a68909060
commit ab9f0c1bf1
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -78,7 +78,7 @@
- (BOOL) appointmentSendEMailNotifications;
- (BOOL) foldersSendEMailNotifications;
- (NSArray *) calendarDefaultRoles;
- (NSString *) calendarJistiBaseUrl;
- (NSString *) calendarJitsiBaseUrl;
- (NSString *) calendarJitsiRoomPrefix;
- (NSArray *) contactsDefaultRoles;
- (NSArray *) refreshViewIntervals;
+1 -1
View File
@@ -169,7 +169,7 @@
return [self stringArrayForKey: @"SOGoCalendarDefaultRoles"];
}
- (NSString *) calendarJistiBaseUrl
- (NSString *) calendarJitsiBaseUrl
{
NSString *jitsiBaseUrl;
jitsiBaseUrl = [self stringForKey: @"SOGoCalendarJitsiBaseUrl"];
+2 -2
View File
@@ -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"];
}
@@ -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)) {