We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40da435 commit 8e69933Copy full SHA for 8e69933
kernel_patches_daemon/branch_worker.py
@@ -1457,7 +1457,7 @@ async def submit_pr_summary(
1457
1458
def ai_review_comment_preprocessor(self, body: str) -> str:
1459
# find the first line starting with > and remove everyting prior
1460
- match = re.search(r"^>.*$", body, re.MULTILINE)
+ match = re.search(r"^> diff --git.*$", body, re.MULTILINE)
1461
if match:
1462
body = body[match.start() :]
1463
# remove triple backticks
0 commit comments