diff options
| author | xengineering <me@xengineering.eu> | 2026-03-07 16:35:13 +0100 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-03-07 16:35:59 +0100 |
| commit | 796a2b21e8b5989187bfc7d4ddb7ba648038cbca (patch) | |
| tree | d1b23fa6ebe0f2601bef0158475452e46962e790 /lib/ui.dart | |
| parent | 2e15dd323b7c3198e2af10f35f1186d91cc6cfaf (diff) | |
| download | sia-app-796a2b21e8b5989187bfc7d4ddb7ba648038cbca.tar sia-app-796a2b21e8b5989187bfc7d4ddb7ba648038cbca.tar.zst sia-app-796a2b21e8b5989187bfc7d4ddb7ba648038cbca.zip | |
Remove automatic initial connection
The user should provide the fully qualified domain name (FQDN) of the
MQTT broker manually and then press connect to actually connect
including automated re-connects.
As a first step the initial connect is bound to the manual button in the
bottom bar. To reduce the scope the disconnect button is labeled
"(disabled)" to make clear this is not expected to work.
Diffstat (limited to 'lib/ui.dart')
| -rw-r--r-- | lib/ui.dart | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ui.dart b/lib/ui.dart index e14895b..1d2ad53 100644 --- a/lib/ui.dart +++ b/lib/ui.dart @@ -113,7 +113,7 @@ class ConnectionStatus extends StatelessWidget { } MachineEvent event = MachineEvent.disconnect; - String action = 'disconnect'; + String action = '(disabled)'; if (state.state == MachineState.init) { event = MachineEvent.connect; action = 'connect'; |
