fix: remove extra userId argument from pl24Service.decodeVin call
Some checks failed
CI / Lint, Typecheck, Test & Build (push) Has been cancelled
Deploy / Deploy to Production (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-05 13:34:23 +00:00
parent cfbf85c5c0
commit 465349734b

View File

@@ -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;
}