mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-30 01:09:29 +00:00
See SOPE/NGCards/ChangeLog.
Monotone-Parent: c4570925f011f2af2dfe09f5e9cc51de5bd1e13e Monotone-Revision: fdaa328ccd09482653fc768fbb48964163c257d9 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-11-21T19:26:07
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2011-11-21 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* iCalTimeZone.m (+knownTimeZoneNames): ignore files that don't
|
||||
have a .ics extension.
|
||||
|
||||
2011-11-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* iCalTrigger.m (-setValue:, value): removed useless accessors.
|
||||
|
||||
@@ -148,8 +148,11 @@ static NSArray *knownTimeZones;
|
||||
if ([fm fileExistsAtPath: zonePath isDirectory: &b] && !b)
|
||||
{
|
||||
ext = [zone rangeOfString: @".ics"];
|
||||
zone = [zone substringToIndex: ext.location];
|
||||
[timeZoneNames addObject: zone];
|
||||
if (ext.location != NSNotFound)
|
||||
{
|
||||
zone = [zone substringToIndex: ext.location];
|
||||
[timeZoneNames addObject: zone];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user