Remove unnecessary reset of radio stats poll reference count in polling interval setter

This commit is contained in:
Winston Lowe 2026-03-26 21:57:39 -07:00
parent c76796cdc3
commit e930ef008e

View file

@ -2252,7 +2252,6 @@ class MeshCoreConnector extends ChangeNotifier {
void setPollingInterval(int i) {
_pollingInterval = i.clamp(1, 60);
if (isConnected) {
_radioStatsPollRefCount = 0;
_startRadioStatsPolling();
}
}