]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Log/Entry.pm
Add log pagination, allow jo and fix bugs in log/log_entry
[gruntmaster-page.git] / lib / Gruntmaster / Page / Log / Entry.pm
index e20c891307960a6fc5c1fd71679ef370c04134fc..a8abc12d250504802ab57a8ca1d3f988118b17d3 100644 (file)
@@ -26,10 +26,14 @@ sub _generate{
        local $Gruntmaster::Data::contest = $1;
        my $id = $2;
 
-       my @tests = map {
-               $_->{time} = sprintf "%.4fs", $_->{time};
-               $_
-       } @{job_results $id};
+       my @tests = ();
+
+       eval {
+               @tests = map {
+                       $_->{time} = sprintf "%.4fs", $_->{time};
+                       $_
+               } @{job_results $id};
+       };
 
        $htc->param(id => $id);
        $htc->param(tests => \@tests);
This page took 0.023988 seconds and 4 git commands to generate.