elliotchance / gedcom

👪 A Go library and CLI tools for encoding, decoding, traversing, merging, comparing, querying and publishing GEDCOM files.
MIT License
96 stars 21 forks source link

Publish: Fix surname index and missing children #293

Closed elliotchance closed 4 years ago

elliotchance commented 4 years ago

Two bugs fixed:

  1. One bug was caused by taking the first letter of the name, which may not be the first letter of the surname. So these individuals were not appearing on the index.

  2. Children with an unknown spouse were not being displayed becuase it was incorrectly comparing the family pointer instead of the individual pointer.

Fixes #276


This change is Reviewable