Skip to content

Commit

Permalink
Try increasing the wait time after completion
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern committed Feb 11, 2023
1 parent 43f5fef commit 9c4edf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Meshtastic.Cli/CommandHandlers/DeviceCommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public async Task<bool> CompleteOnConfigReceived(FromRadio fromRadio, DeviceStat
selection.Converter = container.GetNodeDisplayName;
Destination = AnsiConsole.Prompt(selection);
}
await Task.Delay(250);
await Task.Delay(500);
await OnCompleted(fromRadio, container);
return true;
}
Expand Down

0 comments on commit 9c4edf3

Please sign in to comment.