Now prefixing runnercards with 2
This commit is contained in:
parent
278c4a6a41
commit
8a82e059b7
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user