OpenIDE fix support url for error reporter

This commit is contained in:
Nikita Iarychenko
2026-09-17 12:44:35 +04:00
parent 7e045d48c4
commit 8ac628320c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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 {
@@ -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) {