From 747caef971762830f672ea8046598e838dfde7e7 Mon Sep 17 00:00:00 2001 From: Nikita Iarychenko Date: Thu, 21 May 2026 12:59:31 +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 1410489737b9..71a7dd64354c 100644 --- a/native/XPlatLauncher/src/ui.rs +++ b/native/XPlatLauncher/src/ui.rs @@ -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 { 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 ed93d4fcfe01..104de6d5101f 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 @@ -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) {