Skip to content

Commit

Permalink
Use GMT tz when setting birthday (fixes #3579)
Browse files Browse the repository at this point in the history
  • Loading branch information
extrafu committed Mar 13, 2016
1 parent 3a66e54 commit 20b1d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SoObjects/Contacts/NGVCard+SOGo.m
Expand Up @@ -789,7 +789,7 @@ - (NSCalendarDate *) birthday
value = [bday stringByReplacingString: @"-" withString: @""];
date = [NSCalendarDate dateFromShortDateString: value
andShortTimeString: nil
inTimeZone: nil];
inTimeZone: [NSTimeZone timeZoneWithName: @"GMT"]];
}

return date;
Expand Down

0 comments on commit 20b1d3c

Please sign in to comment.