Skip to content

Commit

Permalink
plugins/oplimits/OperationLimitsSubPanel: Decreased from 30s to 3s th…
Browse files Browse the repository at this point in the history
…e approval valid duration to send by iridium.
  • Loading branch information
paulosousadias committed Oct 28, 2024
1 parent 8b93874 commit 4aef423
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public boolean send(IMCMessage message) {
if (sysL != null && !sysL.isActive()) {
boolean userAproveRequest = false;
boolean userAproved = true;
if (lastRequest.getTime() + Duration.ofSeconds(30).toMillis() < System.currentTimeMillis()) {
if (lastRequest.getTime() + Duration.ofSeconds(3).toMillis() < System.currentTimeMillis()) {
userAproveRequest = true;
userAproved = (GuiUtils.confirmDialog(getConsole(), I18n.text("Send by Iridium"),
I18n.text("Systems is not active. Do you want to send by Iridium?")) == JOptionPane.YES_OPTION);
Expand Down

0 comments on commit 4aef423

Please sign in to comment.