mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix errant maxReadFileLine default (#4683)
This commit is contained in:
parent
1a4c6892a3
commit
254baa8704
1 changed files with 1 additions and 1 deletions
|
|
@ -429,7 +429,7 @@ export async function readFileTool(
|
|||
|
||||
const relPath = fileResult.path
|
||||
const fullPath = path.resolve(cline.cwd, relPath)
|
||||
const { maxReadFileLine = 500 } = (await cline.providerRef.deref()?.getState()) ?? {}
|
||||
const { maxReadFileLine = -1 } = (await cline.providerRef.deref()?.getState()) ?? {}
|
||||
|
||||
// Process approved files
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue