Allow uploading rusEFI tunes

This commit is contained in:
Piotr Rogowski 2022-10-31 19:17:15 +01:00
parent 1ada1d3afa
commit 0a0f585c59
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class TuneParser {
}
private isSignatureSupported(): boolean {
return this.tune.details.signature.match(/^speeduino \d+$/) === null;
return this.tune.details.signature.match(/^(speeduino|rusEFI) .+$/) === null;
}
}