From 95704d3556f7673ef4b2ef75fd2a6e802cfa5b40 Mon Sep 17 00:00:00 2001 From: Josepablo C Date: Wed, 23 Jul 2025 20:49:59 -0600 Subject: [PATCH] fix(client::events): Invalid parameter onLoadDownload --- v1/src/lib/Handlers/Events/Observers/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/src/lib/Handlers/Events/Observers/index.js b/v1/src/lib/Handlers/Events/Observers/index.js index 175c795..a434a2a 100644 --- a/v1/src/lib/Handlers/Events/Observers/index.js +++ b/v1/src/lib/Handlers/Events/Observers/index.js @@ -86,7 +86,7 @@ async function onLoadDownload( notification_type, content ){ switch ( notification_type ){ case NOTIFICATION_TYPE.CLIENT: case NOTIFICATION_TYPE.BOTH: - return await ClientEvents.onLoadDownload( load, carrier, onLoadOnDownload, vehicle, driver ); + return await ClientEvents.onLoadDownload( load, carrier, product, vehicle, driver ); default: return; }