Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15463312
D17136.id41211.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
790 B
Referenced Files
None
Subscribers
None
D17136.id41211.diff
View Options
diff --git a/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php b/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php
--- a/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php
+++ b/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php
@@ -414,6 +414,13 @@
$epoch = PhabricatorTime::getNow();
}
+ // If the epoch is not present at all, treat it as though it stores the
+ // value "0". For discussion, see T12062. This behavior is consistent
+ // with the behavior of "git show".
+ if (!strlen($epoch)) {
+ $epoch = 0;
+ }
+
$refs[] = id(new PhabricatorRepositoryCommitRef())
->setIdentifier($commit)
->setEpoch($epoch)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Apr 2, 10:23 PM (1 d, 18 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7707310
Default Alt Text
D17136.id41211.diff (790 B)
Attached To
Mode
D17136: Survive hand-crafted Git commits which are missing timestamp information
Attached
Detach File
Event Timeline
Log In to Comment