Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kernel_patches_daemon/branch_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ async def submit_pr_summary(

def ai_review_comment_preprocessor(self, body: str) -> str:
# find the first line starting with > and remove everyting prior
match = re.search(r"^>.*$", body, re.MULTILINE)
match = re.search(r"^> diff --git.*$", body, re.MULTILINE)
if match:
body = body[match.start() :]
# remove triple backticks
Expand Down