Use GMT tz when setting birthday (fixes #3579)

pull/203/head
Ludovic Marcotte 2016-03-13 13:44:42 -04:00
parent 5a7652de87
commit 85cacd97de
1 changed files with 1 additions and 1 deletions

View File

@ -818,7 +818,7 @@ convention:
value = [bday stringByReplacingString: @"-" withString: @""];
date = [NSCalendarDate dateFromShortDateString: value
andShortTimeString: nil
inTimeZone: nil];
inTimeZone: [NSTimeZone timeZoneWithName: @"GMT"]];
}
return date;