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.
2 parents d050c75 + d239f6a commit 1dffd0dCopy full SHA for 1dffd0d
pkg/cmd/claude/claude.go
@@ -221,6 +221,10 @@ Subcommands:
221
orgID = config.GetCurrentOrganization()
222
}
223
224
+ if resumeSessionID != "" && sessionID == "" {
225
+ sessionID = resumeSessionID
226
+ }
227
+
228
opts := &ClaudeSessionOptions{
229
SessionID: sessionID,
230
OrgID: orgID,
@@ -233,10 +237,6 @@ Subcommands:
233
237
Stderr: os.Stderr,
234
238
235
239
236
- if resumeSessionID != "" && sessionID == "" {
- sessionID = resumeSessionID
- }
-
240
if !local {
241
// Check if we're already in a sandbox - prevent recursive remote sessions
242
if sandboxID != "" {
0 commit comments