Skip to content

Commit

Permalink
signalData instead of token
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-jpadilla committed Jul 13, 2024
1 parent 39377de commit ca02b93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class VerveAdapter : PartnerAdapter {

return withContext(Dispatchers.IO) {
val signalData = HyBid.getCustomRequestSignalData(context, "cb") ?: ""
PartnerLogController.log(if (token.isEmpty()) BIDDER_INFO_FETCH_FAILED else BIDDER_INFO_FETCH_SUCCEEDED)
PartnerLogController.log(if (signalData.isEmpty()) BIDDER_INFO_FETCH_FAILED else BIDDER_INFO_FETCH_SUCCEEDED)
mapOf("signal_data" to signalData)
}
}
Expand Down

0 comments on commit ca02b93

Please sign in to comment.