We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be13c16 commit 1dd6e17Copy full SHA for 1dd6e17
eg
@@ -438,7 +438,9 @@ sub run {
438
$local_branch_set{$name} = 1;
439
} else {
440
push(@remote_branches, $_);
441
- if (!%latest_remote_branches || !defined($latest_remote_branches{$name}) || $latest_remote_branches{$name}->{"date"} < $_->{"date"}) {
+ if (!%latest_remote_branches
442
+ || !defined($latest_remote_branches{$name})
443
+ || (defined($_->{"date"}) && $latest_remote_branches{$name}->{"date"} < $_->{"date"})) {
444
$latest_remote_branches{$name} = $_;
445
}
446
0 commit comments