fix: increase SPIFFS_OBJ_NAME_LEN to 64 for long session filenames

Fixes #147 — Feishu open_id produces session filenames that exceed the
default 32-byte SPIFFS object name limit, causing "Cannot open session
file" errors.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
crispyberry
2026-03-13 20:26:40 +08:00
parent 85459fb210
commit 5ff0920399

View File

@@ -3,3 +3,6 @@
# Network hostname
CONFIG_LWIP_LOCAL_HOSTNAME="mimiclaw"
# SPIFFS: increase max filename length (default 32 is too short for session files)
CONFIG_SPIFFS_OBJ_NAME_LEN=64