From 4df3b378dc654d05a0c8287bd87ccf0c95e5734f Mon Sep 17 00:00:00 2001 From: Nikita Iarychenko Date: Thu, 21 May 2026 12:55:30 +0400 Subject: [PATCH] OpenIDE fix support url for error reporter --- native/XPlatLauncher/src/ui.rs | 2 +- .../intellij/platform/ide/bootstrap/StartupErrorReporter.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/native/XPlatLauncher/src/ui.rs b/native/XPlatLauncher/src/ui.rs index d80ff3dd418c..2ac773f4715e 100644 --- a/native/XPlatLauncher/src/ui.rs +++ b/native/XPlatLauncher/src/ui.rs @@ -3,7 +3,7 @@ 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 { diff --git a/platform/platform-impl/src/com/intellij/platform/ide/bootstrap/StartupErrorReporter.java b/platform/platform-impl/src/com/intellij/platform/ide/bootstrap/StartupErrorReporter.java index 272163fbd960..08ba1f03a0dc 100644 --- a/platform/platform-impl/src/com/intellij/platform/ide/bootstrap/StartupErrorReporter.java +++ b/platform/platform-impl/src/com/intellij/platform/ide/bootstrap/StartupErrorReporter.java @@ -237,7 +237,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) {