Skip to content

Commit

Permalink
Update bolt agent language details handling (#1530)
Browse files Browse the repository at this point in the history
  • Loading branch information
injectives committed Jan 29, 2024
1 parent 5ed3cc5 commit 07764a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static BoltAgent boltAgent() {
productInfo,
platformBuilder.isEmpty() ? null : platformBuilder.toString(),
language.orElse(null),
languageDetails.isEmpty() ? null : languageDetails.toString());
languageDetails.map(StringBuilder::toString).orElse(null));
}

/**
Expand Down

0 comments on commit 07764a9

Please sign in to comment.