mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Don't try to strlen() an array
This is definitely an array now. Auditors: joshuaspence
This commit is contained in:
parent
0094343556
commit
cee1835bb0
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ final class HarbormasterBuildUnitMessage
|
||||||
}
|
}
|
||||||
|
|
||||||
$coverage = idx($dict, 'coverage');
|
$coverage = idx($dict, 'coverage');
|
||||||
if (strlen($coverage)) {
|
if ($coverage) {
|
||||||
$obj->setProperty('coverage', $coverage);
|
$obj->setProperty('coverage', $coverage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue