fix: remove extra userId argument from pl24Service.decodeVin call
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -279,7 +279,7 @@ export class VehiclesService {
|
||||
let pl24Vehicle: any = null;
|
||||
if (this.pl24Service.isDecodeable(vin)) {
|
||||
try {
|
||||
pl24Vehicle = await this.pl24Service.decodeVin(vin, userId);
|
||||
pl24Vehicle = await this.pl24Service.decodeVin(vin);
|
||||
if (!brandName && pl24Vehicle) {
|
||||
brandName = this.pl24Service.getBrandName(vin) || null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user