pull/273/head
cou 2024-03-06 22:49:35 +09:00
parent b94071df96
commit c983f477f6
1 changed files with 5 additions and 1 deletions

View File

@ -42,7 +42,11 @@ function extract_version(text) {
return null;
}
// Because forge includes v at the beginning of the version text
if (text[0] == 'f')
return matches[0].substring(1);
return matches[0];
}