From 4da9963bd0051748fa93329f6c714b80453eff30 Mon Sep 17 00:00:00 2001 From: krille-chan Date: Sun, 23 Jul 2023 09:23:18 +0200 Subject: [PATCH] docs: Update new issue link --- lib/config/app_config.dart | 4 ++-- lib/utils/error_reporter.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/config/app_config.dart b/lib/config/app_config.dart index 1cb9ce886..92edca6b1 100644 --- a/lib/config/app_config.dart +++ b/lib/config/app_config.dart @@ -36,8 +36,8 @@ abstract class AppConfig { 'https://github.com/krille-chan/fluffychat/issues'; static final Uri newIssueUrl = Uri( scheme: 'https', - host: 'gitlab.com', - path: '/famedly/fluffychat/-/issues/new', + host: 'github.com', + path: '/krille-chan/fluffychat/issues/new', ); static const bool enableSentry = true; static const String sentryDns = diff --git a/lib/utils/error_reporter.dart b/lib/utils/error_reporter.dart index 43aefb2eb..3f8a003d4 100644 --- a/lib/utils/error_reporter.dart +++ b/lib/utils/error_reporter.dart @@ -44,8 +44,8 @@ $stackTrace AppConfig.newIssueUrl.resolveUri( Uri( queryParameters: { - 'issue[title]': '[BUG]: ${message ?? error.toString()}', - 'issue[description]': description, + 'title': '[BUG]: ${message ?? error.toString()}', + 'body': description, }, ), ),