Skip to content

Commit

Permalink
Merge pull request #118 from Progi1984/fixNightly
Browse files Browse the repository at this point in the history
Fixed download links in Report endpoint
  • Loading branch information
Progi1984 authored Feb 1, 2024
2 parents 1943051 + 094b1bc commit f2cffa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/ReportLister.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function __construct(string $nightlyReportPath)
public function get(): array
{
$return = @file_get_contents($this->nightlyReportPath);
if (!$return || !is_dir($this->nightlyReportPath)) {
if (!$return) {
return [];
}

Expand Down

0 comments on commit f2cffa3

Please sign in to comment.