mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
Merge branch 'master' into grapher
* master: PBGitRevList: Fix parsing of date
This commit is contained in:
+1
-1
@@ -63,7 +63,7 @@
|
||||
newCommit.parents = parents;
|
||||
newCommit.subject = [components objectAtIndex:2];
|
||||
newCommit.author = [components objectAtIndex:1];
|
||||
newCommit.date = [NSDate dateWithTimeIntervalSince1970:[[components objectAtIndex:3] intValue]];
|
||||
newCommit.date = [NSDate dateWithTimeIntervalSince1970:[[components objectAtIndex:4] intValue]];
|
||||
|
||||
[newArray addObject: newCommit];
|
||||
num++;
|
||||
|
||||
Reference in New Issue
Block a user