Now prefixing runnercards with 2

This commit is contained in:
Nicolai Ort 2021-04-22 19:41:18 +02:00
parent 278c4a6a41
commit 8a82e059b7

View File

@ -67,10 +67,11 @@ export class RunnerCard {
private get paddedId(): string { private get paddedId(): string {
let id: string = this.id.toString(); let id: string = this.id.toString();
if (id.length > 12) { if (id.length > 11) {
throw new RunnerCardIdOutOfRangeError(); throw new RunnerCardIdOutOfRangeError();
} }
while (id.length < 12) { id = '0' + id; } while (id.length < 11) { id = '0' + id; }
id = '2' + id;
return id; return id;
} }