Skip to content

Commit

Permalink
Handle linked notes - #114
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jun 7, 2024
1 parent ae15cb1 commit 312ca35
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -11016,6 +11016,10 @@ sub notes
if($note) {
if(ref($note) eq 'Gedcom::Record') {
$note = $note->full_value(); # Include CONC records
# https://github.com/nigelhorne/ged2site/issues/114
if(my $n = $ged->resolve_xref($note)) {
$note = $n->full_value();
}
# } else {
# complain("Note record is just description ($note), information may have been lost");
}
Expand Down

0 comments on commit 312ca35

Please sign in to comment.