Skip to content

Commit

Permalink
docs: Update new issue link
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Jul 23, 2023
1 parent 982b58a commit 4da9963
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/config/app_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down
4 changes: 2 additions & 2 deletions lib/utils/error_reporter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
),
),
Expand Down

0 comments on commit 4da9963

Please sign in to comment.