OpenIDE fix support url for error reporter

This commit is contained in:
Nikita Iarychenko
2026-05-21 12:59:31 +04:00
parent 8e67ccd536
commit 747caef971
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ use {
const ERROR_TITLE: &str = "Cannot start the IDE";
const ERROR_FOOTER: &str =
"Please try to reinstall the IDE.\n\
For support, please refer to https://jb.gg/ide/critical-startup-errors";
For support, please refer to https://gitflic.ru/project/openide/openide/issue/create";
pub fn show_error(gui: bool, error: anyhow::Error) {
if gui {
@@ -224,7 +224,7 @@ public final class StartupErrorReporter {
private static void supportCenter() {
try {
var url = System.getProperty(SUPPORT_URL_PROPERTY, "https://jb.gg/ide/critical-startup-errors");
var url = System.getProperty(SUPPORT_URL_PROPERTY, "https://gitflic.ru/project/openide/openide/issue/create");
Desktop.getDesktop().browse(new URI(url));
}
catch (Throwable t) {