Skip to content

Commit

Permalink
Small changes based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
dklawren committed Jan 29, 2025
1 parent 7bbc222 commit b9c901f
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions extensions/BMO/bin/export_bmo_etl.pl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
# Bugs that are private to one or more groups
our %private_bugs = ();

# I order to avoid entering duplicate data, we will first query BigQuery
# In order to avoid entering duplicate data, we will first query BigQuery
# to make sure other entries with this date are not already present.
check_for_duplicates();

Expand Down Expand Up @@ -543,13 +543,11 @@ sub process_see_also {
if ($private_bugs{$bug_id}) {
$data->{url} = undef;
}
elsif ($class =~ /::Local/) {
$data->{url} = Bugzilla->localconfig->urlbase . 'show_bug.cgi?id=' . $value;
}
else {
if ($class =~ /::Local/) {
$data->{url} = Bugzilla->localconfig->urlbase . 'show_bug.cgi?id=' . $value;
}
else {
$data->{url} = $value;
}
$data->{url} = $value;
}

push @results, $data;
Expand Down

0 comments on commit b9c901f

Please sign in to comment.