fix(web): remove unused session helper

This commit is contained in:
Alix-007 2026-03-26 05:20:45 +08:00
parent 553afcccfb
commit 73e171103c

View file

@ -224,10 +224,6 @@ func (h *Handler) readJSONLSessionByKey(dir, sessionKey string) (sessionFile, er
}, nil }, nil
} }
func (h *Handler) readLegacySession(dir, sessionID string) (sessionFile, error) {
return h.readLegacySessionByKey(dir, resolveSessionKey(sessionID))
}
func (h *Handler) readJSONLSession(dir, sessionID string) (sessionFile, error) { func (h *Handler) readJSONLSession(dir, sessionID string) (sessionFile, error) {
return h.readJSONLSessionByKey(dir, resolveSessionKey(sessionID)) return h.readJSONLSessionByKey(dir, resolveSessionKey(sessionID))
} }