Release 0.11.1 #196

Merged
niggl merged 8 commits from dev into main 2021-04-22 18:21:17 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 8a82e059b7 - Show all commits

View File

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