gui downloaded() mis-parses failure messages #141
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?
aqomui_gui.py downloaded() checks len(msg.split('&')) >= 2 for the failure branch but then indexes split[2] — a two-field message raises IndexError in the handler. Any no-'&' string falls into the success branch and gets treated as a provider name, i.e. opened as ~/.aqomui/.json. #138 removes the last producer of such a message (Airvpn's 'Sorry, something went wrong'), but the parser stays fragile: it trusts the signal payload's shape completely. Found surveying for #23.