Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15401901
D20363.id48583.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
816 B
Referenced Files
None
Subscribers
None
D20363.id48583.diff
View Options
diff --git a/src/applications/differential/render/DifferentialChangesetRenderer.php b/src/applications/differential/render/DifferentialChangesetRenderer.php
--- a/src/applications/differential/render/DifferentialChangesetRenderer.php
+++ b/src/applications/differential/render/DifferentialChangesetRenderer.php
@@ -684,7 +684,12 @@
// If this change is missing context, don't try to identify scopes, since
// we won't really be able to get anywhere.
$has_multiple_hunks = (count($hunk_starts) > 1);
- $has_offset_hunks = (head_key($hunk_starts) != 1);
+
+ $has_offset_hunks = false;
+ if ($hunk_starts) {
+ $has_offset_hunks = (head_key($hunk_starts) != 1);
+ }
+
$missing_context = ($has_multiple_hunks || $has_offset_hunks);
if ($missing_context) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 18, 7:42 PM (2 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7710304
Default Alt Text
D20363.id48583.diff (816 B)
Attached To
Mode
D20363: Correct a case where a single-hunk diff may incorrectly be identified as multi-hunk by the Scope engine
Attached
Detach File
Event Timeline
Log In to Comment