Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15393730
D8758.id20764.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D8758.id20764.diff
View Options
diff --git a/src/applications/differential/controller/DifferentialRevisionViewController.php b/src/applications/differential/controller/DifferentialRevisionViewController.php
--- a/src/applications/differential/controller/DifferentialRevisionViewController.php
+++ b/src/applications/differential/controller/DifferentialRevisionViewController.php
@@ -193,11 +193,18 @@
$commit_hashes[] = idx($local_commit, 'local');
}
$commit_hashes = array_unique(array_filter($commit_hashes));
- $commits_for_links = id(new DiffusionCommitQuery())
- ->setViewer($user)
- ->withIdentifiers($commit_hashes)
- ->execute();
- $commits_for_links = mpull($commits_for_links, null, 'getCommitIdentifier');
+ if ($commit_hashes) {
+ $commits_for_links = id(new DiffusionCommitQuery())
+ ->setViewer($user)
+ ->withIdentifiers($commit_hashes)
+ ->execute();
+ $commits_for_links = mpull(
+ $commits_for_links,
+ null,
+ 'getCommitIdentifier');
+ } else {
+ $commit_for_links = array();
+ }
$revision_detail = id(new DifferentialRevisionDetailView())
->setUser($user)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 16, 11:04 PM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704535
Default Alt Text
D8758.id20764.diff (1 KB)
Attached To
Mode
D8758: Don't load every commit if there are no local hashes
Attached
Detach File
Event Timeline
Log In to Comment