fix(cli): show full session titles in /resume list

This commit is contained in:
LeonSGP43
2026-05-24 16:13:23 -07:00
committed by Teknium
parent 8e68426981
commit 6c44d537cc
2 changed files with 29 additions and 1 deletions
+1 -1
View File
@@ -6175,7 +6175,7 @@ class HermesCLI:
print(f" {'Title':<32} {'Preview':<40} {'Last Active':<13} {'ID'}")
print(f" {'' * 32} {'' * 40} {'' * 13} {'' * 24}")
for session in sessions:
title = (session.get("title") or "")[:30]
title = session.get("title") or ""
preview = (session.get("preview") or "")[:38]
last_active = _relative_time(session.get("last_active"))
print(f" {title:<32} {preview:<40} {last_active:<13} {session['id']}")