Skip to content

Commit b5167e0

Browse files
Copilotneongreen
andcommitted
Use filepath.Join for cross-platform path construction
Co-authored-by: neongreen <[email protected]>
1 parent d4505c5 commit b5167e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ingest-claude-code/sessions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func extractSession(path string, info os.FileInfo) (*Session, error) {
107107
}
108108
if decoded != "" {
109109
segments := strings.Split(decoded, "-")
110-
session.ProjectPath = strings.Join(segments, string(os.PathSeparator))
110+
session.ProjectPath = filepath.Join(segments...)
111111
}
112112
}
113113
}

0 commit comments

Comments
 (0)