Skip to content

Commit

Permalink
bugfix: fixed http parameter name, should be project
Browse files Browse the repository at this point in the history
  • Loading branch information
blagerweij committed Nov 27, 2023
1 parent b2b28bf commit e690225
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DependencyTrack(apiKey: String, private val baseUrl: String) {
val res = client.uploadFileWithFormData(url, file, "bom") {
append("autoCreate", autoCreate)
projectUUID?.let {
append("projectUUID", it)
append("project", it)
}
projectName?.let {
append("projectName", it)
Expand Down

0 comments on commit e690225

Please sign in to comment.