Skip to content

Commit d19ca8f

Browse files
committed
fix(validateGeneration): allow - char
1 parent 0346673 commit d19ca8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/validators.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ int validateGeneration(char* generation) {
2626
int generationLength = strlen(generation);
2727

2828
for (i = 0; i < generationLength; i++) {
29-
if (!isdigit(*(generation + i))) return 0;
29+
if (*(generation + i) != '-' && !isdigit(*(generation + i))) return 0;
3030
}
3131

3232
sscanf(generation, "%d", &generationInt);

0 commit comments

Comments
 (0)