Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions adapters/adagio/adagio.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package adagio

import (
"encoding/json"
"errors"
"fmt"
"net/http"

Expand Down Expand Up @@ -64,7 +63,7 @@ func (a *adapter) MakeBids(internalRequest *openrtb2.BidRequest, externalRequest
}

if len(bidResponse.SeatBid) == 0 {
return nil, []error{errors.New("empty seatbid array")}
return nil, []error{&errortypes.BadServerResponse{Message: "empty seatbid array"}}
}

var errs []error
Expand Down
7 changes: 6 additions & 1 deletion static/bidder-info/adagio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ capabilities:
mediaTypes:
- banner
- video
- native
- native
site:
mediaTypes:
- banner
- video
- native
2 changes: 1 addition & 1 deletion static/bidder-params/adagio.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"placement": {
"type": "string",
"description": "Refers to the placement of an adunit in a page. Must not contain any information about the type of device."
"description": "Refers to the placement of an adunit in a page. See Adagio recommended values: https://prebid.org/dev-docs/bidders/adagio.html#recommended-placement-param-values."
},
"site": {
"type": "string",
Expand Down
Loading