Skip to content

Commit

Permalink
fix list tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tverbele committed Feb 15, 2018
1 parent 68dbd26 commit d45398d
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -285,7 +285,8 @@ public boolean accept(File dir, String name) {
}
if(candidates != null){
for(String candidate : candidates){
parseTags(candidate.substring(37), tags);
if(candidate.length() > 37)
parseTags(candidate.substring(37), tags);
}
}

Expand Down

0 comments on commit d45398d

Please sign in to comment.