Skip to content

Commit

Permalink
Remove dbpedia false-positive
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Aug 28, 2023
1 parent d500275 commit 207eac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -7543,7 +7543,7 @@ sub print_person
# print $csv notes({ person => $person, record => $death });
# }

if($opts{'w'} && (my $dbpedia = dbpedia({ person => $person, birth_dt => $birth_dt, yod => $yod }))) {
if($opts{'w'} && (my $dbpedia = dbpedia({ person => $person, birth_dt => $birth_dt, yob => $yob, yod => $yod }))) {
}

if(($person->get_value('note')) &&
Expand Down Expand Up @@ -13532,7 +13532,7 @@ sub dbpedia
my $person = $params{'person'};
my $yod = $params{'yod'};
my $birth_dt = $params{'birth_dt'};
my $yob;
my $yob = $params{'yob'};

if(defined($birth_dt) && $birth_dt) {
if(!ref($birth_dt)) {
Expand Down

0 comments on commit 207eac1

Please sign in to comment.