Connecting to a server above the account's tier fails without visible feedback #156
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Observed live (2026-08-24): a free-tier Proton account connecting to a Plus server just doesn't connect — no dialog, nothing the user saw. A free-server connection from the same account worked.
Two layers to this:
Connect failures only surface as toasts. Both
conn_attempt_failed*and the 15s watchdog'stimeout()report vianotify()— the exact channel #141/#149 established as unreliable for imports (KDE suppresses toasts over fullscreen apps, and they're easy to miss even when shown). A failed connect answers a user action the same way a failed import does; it deserves the same treatment. (The toast body also says "Unable to connecto".)aqomui already knows enough to prevent the attempt. The import stores each logical's tier in the server name, and the
/vpnreply consulted during import carries the account'sMaxTier— servers above it could be marked in the server tab (or the connect refused with a message naming the plan mismatch) instead of letting OpenVPN fail on credentials the server will never accept. Needs a decision on presentation: hide, grey out, or connect-time message.First step next time it reproduces: check the log tab / journal for whether the attempt died as
AUTH_FAILED(mgmt auth path) or hung until the watchdog killed it — that decides which surface carries the fix in layer 1.🤖 Generated with Claude Code