Skip to content

Commit

Permalink
Merge pull request #16 from bloomreach/dev
Browse files Browse the repository at this point in the history
Dev > main v1.0.12
  • Loading branch information
prashant-br authored Jan 17, 2024
2 parents ec85461 + 2da6a27 commit 60299c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
minSdk 24
targetSdk 32
versionCode 1
versionName "1.0.11"
versionName "1.0.12"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,13 @@ internal class PixelProcessor {

queryMap.put("etype", pixelObject.eType)

queryMap.put("prod_id", pixelObject.prodId)
if (!pixelObject.prodId.isNullOrEmpty()) {
queryMap.put("prod_id", pixelObject.prodId)
}

queryMap.put("prod_name", pixelObject.prodName)
if (!pixelObject.prodName.isNullOrEmpty()) {
queryMap.put("prod_name", pixelObject.prodName)
}

if (!pixelObject.prodSku.isNullOrEmpty()) {
queryMap.put("sku", pixelObject.prodSku)
Expand Down

0 comments on commit 60299c2

Please sign in to comment.