Refactor USB permission handling and reset initial channel sync flag

This commit is contained in:
just_stuff_tm
2026-03-03 15:08:05 -05:00
committed by just-stuff-tm
parent 38d40ca0a4
commit 21ff765e41
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1169,7 +1169,6 @@ class MeshCoreConnector extends ChangeNotifier {
_pendingInitialContactsSync = false;
_bleInitialSyncStarted = false;
_pendingDeferredChannelSyncAfterContacts = false;
_webInitialHandshakeRequestSent = false;
}
bool get _shouldAutoReconnect =>
@@ -2241,6 +2240,7 @@ class MeshCoreConnector extends ChangeNotifier {
(_activeTransport == MeshCoreTransportType.bluetooth ||
_activeTransport == MeshCoreTransportType.usb)) {
_pendingDeferredChannelSyncAfterContacts = false;
_pendingInitialChannelSync = false;
unawaited(getChannels());
}
break;