mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-18 18:05:36 +00:00
fix(calendar): Fix typo Jisti × Jitsi
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
This commit is contained in:
@@ -78,7 +78,7 @@
|
||||
- (BOOL) appointmentSendEMailNotifications;
|
||||
- (BOOL) foldersSendEMailNotifications;
|
||||
- (NSArray *) calendarDefaultRoles;
|
||||
- (NSString *) calendarJistiBaseUrl;
|
||||
- (NSString *) calendarJitsiBaseUrl;
|
||||
- (NSString *) calendarJitsiRoomPrefix;
|
||||
- (NSArray *) contactsDefaultRoles;
|
||||
- (NSArray *) refreshViewIntervals;
|
||||
|
||||
@@ -169,7 +169,7 @@
|
||||
return [self stringArrayForKey: @"SOGoCalendarDefaultRoles"];
|
||||
}
|
||||
|
||||
- (NSString *) calendarJistiBaseUrl
|
||||
- (NSString *) calendarJitsiBaseUrl
|
||||
{
|
||||
NSString *jitsiBaseUrl;
|
||||
jitsiBaseUrl = [self stringForKey: @"SOGoCalendarJitsiBaseUrl"];
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user