bups and readme cleanup

This commit is contained in:
2026-05-12 10:12:50 -04:00
parent bd771100b0
commit dc1265190a
14 changed files with 322 additions and 3400 deletions

View File

@@ -15,7 +15,9 @@ class Car {
nickname = map[colNickname];
plate = map[colPlate];
mileage = map[colMileage];
icon = map[colIcon];
icon = map.containsKey(colIcon)
? map[colIcon] ?? 'images/car.png'
: 'images/car.png';
}
int? id;