You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed a batch of WebDAV RFC compliance issues found while auditing the CLI's WebDAV server (PROPFIND, PUT, DELETE...).
Improved fetching a folder's subfolders and subfiles, now its done concurrently instead of sequentially, so it halves the round-trips for large folder listings.
Fixed docker session_alive keepalive check: compare the logged-in email case-insensitively. Before, an INXT_USER env var with any uppercase character made the keepalive loop think the session was always expired, forcing a full re-login (and WebDAV server restart) roughly every 30s, even when idle.
unhandledRejection guard added to both CLI entrypoints in order to not reject an orphaned promise, so now it's logged and the command can keep going.