mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Use 60 days for TTL for alert. Cleanups.
This commit is contained in:
parent
5d87e5e9c7
commit
27d1083380
@ -119,7 +119,7 @@ public final class Alert implements ProtectedStoragePayload {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public long getTTL() {
|
public long getTTL() {
|
||||||
return TimeUnit.DAYS.toMillis(30);
|
return TimeUnit.DAYS.toMillis(60);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSigAndPubKey(String signatureAsBase64, PublicKey ownerPubKey) {
|
public void setSigAndPubKey(String signatureAsBase64, PublicKey ownerPubKey) {
|
||||||
|
@ -323,12 +323,9 @@ public class TraderDisputeView extends ActivatableView<VBox, Void> {
|
|||||||
.show();
|
.show();
|
||||||
}
|
}
|
||||||
} else if (Utilities.isAltOrCtrlPressed(KeyCode.ENTER, event)) {
|
} else if (Utilities.isAltOrCtrlPressed(KeyCode.ENTER, event)) {
|
||||||
if (selectedDispute != null) {
|
if (selectedDispute != null && messagesInputBox.isVisible() && inputTextArea.isFocused())
|
||||||
if (messagesInputBox.isVisible() && inputTextArea.isFocused()) {
|
|
||||||
onTrySendMessage();
|
onTrySendMessage();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ import java.security.Security;
|
|||||||
|
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public class Monitor {
|
public class Monitor {
|
||||||
public static final String VERSION = "1.0.0";
|
public static final String VERSION = "1.0.1";
|
||||||
|
|
||||||
private static MonitorEnvironment environment;
|
private static MonitorEnvironment environment;
|
||||||
@Getter
|
@Getter
|
||||||
|
Loading…
Reference in New Issue
Block a user