mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Merge pull request #1421 from evan-fannin/fix-linting-error
Chore: Fix linting error
This commit is contained in:
commit
f915fb2e2d
1 changed files with 3 additions and 1 deletions
|
|
@ -56,7 +56,9 @@ export class DebugConsoleManager {
|
|||
*/
|
||||
getUnretrievedOutput(sessionId: string): string | undefined {
|
||||
const session = this.sessions.get(sessionId)
|
||||
if (!session) return undefined
|
||||
if (!session) {
|
||||
return undefined
|
||||
}
|
||||
|
||||
const newOutput = session.output.slice(session.lastRetrievedIndex + 1).join("")
|
||||
session.lastRetrievedIndex = session.output.length - 1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue