Skip to content

Commit

Permalink
Sparteo Bid Adapter: Adapt error messages following param deprecation (
Browse files Browse the repository at this point in the history
  • Loading branch information
tanguylemeur-sparteo authored Oct 18, 2024
1 parent 5c246b3 commit 1fed96d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/sparteoBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ export const spec = {
}

if (!bid.params.networkId && !bid.params.publisherId) {
logError('The networkId or publisherId is required');
// publisherId is deprecated but is still accepted for now for retrocompatibility purpose.
logError('The networkId is required');
return false;
}

Expand Down

0 comments on commit 1fed96d

Please sign in to comment.