Skip to content

Commit

Permalink
fixed great-aunt; closes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
compiledpanda committed May 22, 2014
1 parent 26d04c7 commit c15843b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/fs-traversal.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,13 @@ module.exports = function(sdk) {
rel = 'cousin';
break;
case '↑↑↑↓':
rel = 'great-uncle';
if(gender == 'http://gedcomx.org/Male') {
rel = 'great-uncle';
} else if(gender == 'http://gedcomx.org/Female') {
rel = 'great-aunt';
} else {
rel = 'great-uncle';
}
break;
default:
match = false;
Expand Down

0 comments on commit c15843b

Please sign in to comment.