Skip to content

Commit

Permalink
Added a couple of missing defaults: family.complete, media.thumb
Browse files Browse the repository at this point in the history
  • Loading branch information
dsblank committed Nov 18, 2024
1 parent 915240b commit 2d2ab43
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gramps/gen/db/conversion_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ def convert_family(array):
"change": array[12],
"tag_list": array[13],
"private": array[14],
"complete": 0,
}


Expand Down Expand Up @@ -455,6 +456,7 @@ def convert_media(array):
"date": convert_date(array[10]),
"tag_list": array[11],
"private": array[12],
"thumb": None,
}


Expand Down

0 comments on commit 2d2ab43

Please sign in to comment.