mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: start line not working in multiple apply diff (#5019)
This commit is contained in:
parent
ff9b6b3ef6
commit
5bc3af1bc3
1 changed files with 1 additions and 1 deletions
|
|
@ -485,7 +485,7 @@ Each file requires its own path, start_line, and diff elements.
|
|||
|
||||
const replacements = matches
|
||||
.map((match) => ({
|
||||
startLine: Number(match[2] ?? 0),
|
||||
startLine: _paramStartLine ?? Number(match[2] ?? 0),
|
||||
searchContent: match[6],
|
||||
replaceContent: match[7],
|
||||
}))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue