Skip to content

Commit

Permalink
Merge pull request #9 from slovensko-digital/bugfix/response-headers
Browse files Browse the repository at this point in the history
fix for correct url string for atlassian
  • Loading branch information
DominikBohucak authored Oct 2, 2023
2 parents e154d84 + 263a0f0 commit cc77bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/src/Service/AtlassianApiService.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function addIssueAttachments(string $issueId, array $files): ResponseInte
'Content-Type' => 'application/json',
'Authorization' => 'Basic '.$this->token,
],
RequestOptions::JSON => $data,
RequestOptions::BODY => json_encode($data, JSON_UNESCAPED_SLASHES),
]);
}
}

0 comments on commit cc77bbd

Please sign in to comment.