aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar logmanoriginal <logmanoriginal@users.noreply.github.com> 2019-06-01 22:32:41 +0200
committerGravatar logmanoriginal <logmanoriginal@users.noreply.github.com> 2019-06-01 22:35:56 +0200
commit468d8be72d34f0a94e5ae4090b3321c5bda4db35 (patch)
treec36cbd8779fddb4bf9f4371373d660762756ce91
parented539bacf95a71164f24921d75eaf1ec248ee4d4 (diff)
downloadrss-bridge-468d8be72d34f0a94e5ae4090b3321c5bda4db35.tar.gz
rss-bridge-468d8be72d34f0a94e5ae4090b3321c5bda4db35.tar.zst
rss-bridge-468d8be72d34f0a94e5ae4090b3321c5bda4db35.zip
[Exceptions] Fix GitHub query labels for bug reports
All bug reports now use the Bridge-Broken label by default
-rw-r--r--lib/Exceptions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Exceptions.php b/lib/Exceptions.php
index ac452d02..112580de 100644
--- a/lib/Exceptions.php
+++ b/lib/Exceptions.php
@@ -83,7 +83,7 @@ function buildBridgeException($e, $bridge){
. '`';
$body_html = nl2br($body);
- $link = buildGitHubIssueQuery($title, $body, 'bug report', $bridge->getMaintainer());
+ $link = buildGitHubIssueQuery($title, $body, 'Bridge-Broken', $bridge->getMaintainer());
$header = buildHeader($e, $bridge);
$message = <<<EOD
@@ -119,7 +119,7 @@ function buildTransformException($e, $bridge){
. (isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '')
. '`';
- $link = buildGitHubIssueQuery($title, $body, 'bug report', $bridge->getMaintainer());
+ $link = buildGitHubIssueQuery($title, $body, 'Bridge-Broken', $bridge->getMaintainer());
$header = buildHeader($e, $bridge);
$message = "RSS-Bridge was unable to transform the contents returned by
<strong>{$bridge->getName()}</strong>!";