Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15430348
D18811.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
D18811.diff
View Options
diff --git a/src/applications/diffusion/controller/DiffusionRepositoryController.php b/src/applications/diffusion/controller/DiffusionRepositoryController.php
--- a/src/applications/diffusion/controller/DiffusionRepositoryController.php
+++ b/src/applications/diffusion/controller/DiffusionRepositoryController.php
@@ -46,8 +46,20 @@
->withRepositoryPHIDs(array($repository->getPHID()))
->withRefTypes(array(PhabricatorRepositoryRefCursor::TYPE_BRANCH))
->withRefNames(array($drequest->getBranch()))
+ ->needPositions(true)
->execute();
- if ($ref_cursors) {
+
+ // It's possible that this branch previously existed, but has been
+ // deleted. Make sure we have valid cursor positions, not just cursors.
+ $any_positions = false;
+ foreach ($ref_cursors as $ref_cursor) {
+ if ($ref_cursor->getPositions()) {
+ $any_positions = true;
+ break;
+ }
+ }
+
+ if ($any_positions) {
// This is a valid branch, so we necessarily have some content.
$page_has_content = true;
} else {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 25, 7:13 AM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7709312
Default Alt Text
D18811.diff (1 KB)
Attached To
Mode
D18811: Fix an issue where Diffusion could fatal if the default branch was deleted
Attached
Detach File
Event Timeline
Log In to Comment