mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-23 22:49:17 +00:00
fix broken link to report issues
This commit is contained in:
parent
8038dcf401
commit
b48dbc2fb3
1 changed files with 2 additions and 2 deletions
|
@ -394,7 +394,7 @@ public abstract class Overlay<T extends Overlay<T>> {
|
|||
|
||||
public T useReportBugButton() {
|
||||
this.closeButtonText = Res.get("shared.reportBug");
|
||||
this.closeHandlerOptional = Optional.of(() -> GUIUtil.openWebPage("https://haveno.exchange/source/haveno/issues"));
|
||||
this.closeHandlerOptional = Optional.of(() -> GUIUtil.openWebPage("https://github.com/haveno-dex/haveno/issues"));
|
||||
return cast();
|
||||
}
|
||||
|
||||
|
@ -939,7 +939,7 @@ public abstract class Overlay<T extends Overlay<T>> {
|
|||
gitHubButton.setOnAction(event -> {
|
||||
if (message != null)
|
||||
Utilities.copyToClipboard(message);
|
||||
GUIUtil.openWebPage("https://haveno.exchange/source/haveno/issues");
|
||||
GUIUtil.openWebPage("https://github.com/haveno-dex/haveno/issues");
|
||||
hide();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue