We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9560bc1 + 95f23de commit 23ec25cCopy full SHA for 23ec25c
pr_agent/git_providers/bitbucket_server_provider.py
@@ -81,6 +81,8 @@ def publish_code_suggestions(self, code_suggestions: list) -> bool:
81
continue
82
83
if relevant_lines_end > relevant_lines_start:
84
+ # Bitbucket does not support multi-line suggestions so use a code block instead - https://jira.atlassian.com/browse/BSERV-4553
85
+ body = body.replace("```suggestion", "```")
86
post_parameters = {
87
"body": body,
88
"path": relevant_file,
0 commit comments