Bugzilla – Attachment 150572 Details for
Bug 30367
Plugins: Search explodes in error when searching for specific keywords
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30367: (follow-up) Same adjustment for gitlab
Bug-30367-follow-up-Same-adjustment-for-gitlab.patch (text/plain), 1.21 KB, created by
Nick Clemens (kidclamp)
on 2023-05-03 10:59:47 UTC
(
hide
)
Description:
Bug 30367: (follow-up) Same adjustment for gitlab
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2023-05-03 10:59:47 UTC
Size:
1.21 KB
patch
obsolete
>From 7f4ea966c0b1b623bcba8beb892737949457f6c9 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Wed, 3 May 2023 10:58:22 +0000 >Subject: [PATCH] Bug 30367: (follow-up) Same adjustment for gitlab > >This adds the same update for gitlab code. I was unable to trigger the error, >however, I confirm searching for 'PayPal' returns a result after this patch >as well as before. >--- > plugins/plugins-home.pl | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > >diff --git a/plugins/plugins-home.pl b/plugins/plugins-home.pl >index 133358aecf..5c9985f135 100755 >--- a/plugins/plugins-home.pl >+++ b/plugins/plugins-home.pl >@@ -101,7 +101,9 @@ if ($plugins_enabled) { > my $description = $result->{description} // ''; > my $web_url = $result->{web_url}; > my $releases_url = "https://gitlab.com/api/v4/projects/$project_id/releases"; >- my @releases = @{ from_json( get($releases_url) ) }; >+ my $releases_info = get($releases_url); >+ next unless $releases_info; >+ my @releases = @{ from_json( $releases_info ) }; > > if ( scalar @releases > 0 ) { > >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 30367
:
150523
|
150527
|
150572
|
150575
|
150576