georgringer / t3monitoring

Monitoring service of TYPO3 extensions
GNU General Public License v2.0
47 stars 38 forks source link

[BUG] Extension list view throws an error #235

Open rniklas opened 1 month ago

rniklas commented 1 month ago

If I adjust the QueryBuilder in the findByDemand function in the ExtensionRepository, the problem is solved.

$statement = $queryBuilder->executeQuery(); // while ($row = $queryBuilder->executeQuery()->fetchAssociative()) { while ($row = $statement->fetchAssociative()) { ... } return $result;

christian-fries commented 3 weeks ago

This was fixed in https://github.com/georgringer/t3monitoring/pull/236