From 928acb2595d9b26fb3c9ab94686146e8d08254cc Mon Sep 17 00:00:00 2001 From: Agustin Moyano Date: Fri, 3 May 2019 00:15:12 -0300 Subject: [PATCH] Bug 22835: (follow-up) Remove unwanted warn --- Koha/REST/V1/Static.pm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Koha/REST/V1/Static.pm b/Koha/REST/V1/Static.pm index d0f31c9a40..0883a378c2 100644 --- a/Koha/REST/V1/Static.pm +++ b/Koha/REST/V1/Static.pm @@ -55,7 +55,7 @@ sub get { ); @plugins = grep { $_->api_namespace eq $namespace} @plugins; - warn scalar(@plugins); + return $c->render({ status => 404, openapi => { error => 'File not found' } }) unless scalar(@plugins) > 0; return $c->render({ status => 500, openapi => { error => 'Namespace not unique' } }) unless scalar(@plugins) == 1; @@ -63,13 +63,8 @@ sub get { my $basepath = $plugin->bundle_path; - warn $basepath; - my $relpath = join ('/', splice (@$path, 5)); - warn $relpath; - - warn join('/', $basepath, $relpath); return try { my $asset = Mojo::Asset::File->new(path => join('/', $basepath, $relpath)); return $c->render({ status => 404, openapi => { error => 'File not found' } }) unless $asset->is_file; -- 2.11.0