Skip to content

Commit

Permalink
fix filter
Browse files Browse the repository at this point in the history
  • Loading branch information
athallahmaajid committed Jul 10, 2021
1 parent e01c714 commit bd3f5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/filter.dart
Expand Up @@ -10,7 +10,7 @@ String filterNumber(int number){
reversed.insert(i, ',');
counter++;
limiter = 0;
} else if (reversed[i+counter-1] != reversed.last) {
} else if (reversed.length-1 != counter) {
reversed.insert(i+counter, ',');
counter++;
limiter = 0;
Expand Down

0 comments on commit bd3f5cb

Please sign in to comment.