We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41588ef commit 95f23deCopy full SHA for 95f23de
pr_agent/git_providers/bitbucket_server_provider.py
@@ -91,6 +91,8 @@ def publish_code_suggestions(self, code_suggestions: list) -> bool:
91
continue
92
93
if relevant_lines_end > relevant_lines_start:
94
+ # Bitbucket does not support multi-line suggestions so use a code block instead - https://jira.atlassian.com/browse/BSERV-4553
95
+ body = body.replace("```suggestion", "```")
96
post_parameters = {
97
"body": body,
98
"path": relevant_file,
0 commit comments