mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
OpenIDE fix support url for error reporter
This commit is contained in:
@@ -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 {
|
||||
|
||||
+1
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user