We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
-
1 parent 0346673 commit d19ca8fCopy full SHA for d19ca8f
libs/validators.c
@@ -26,7 +26,7 @@ int validateGeneration(char* generation) {
26
int generationLength = strlen(generation);
27
28
for (i = 0; i < generationLength; i++) {
29
- if (!isdigit(*(generation + i))) return 0;
+ if (*(generation + i) != '-' && !isdigit(*(generation + i))) return 0;
30
}
31
32
sscanf(generation, "%d", &generationInt);
0 commit comments