Skip to content

Commit

Permalink
rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
compiledpanda committed May 22, 2014
1 parent c15843b commit bafa109
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion fs-traversal.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,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 bafa109

Please sign in to comment.