diff --git a/CHANGELOG.md b/CHANGELOG.md index 186deab7..15a3418a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog All notable changes to the Audio Player project will be documented in this file. -## 3.3.0 - 2022-03-xx +## 3.3.0 - 2022-03-29 ### Changed - getID3 1.9.21-202202220815 - migrated drag and drop from jquery to vanilla js @@ -10,7 +10,8 @@ All notable changes to the Audio Player project will be documented in this file. ### Fixed - Scan freeze and PHP fread() error #571 - drag and drop hover not accurate #570 -- Song keeps loading until click on loading symbol[BUG] #566 +- Song keeps loading until click on loading symbol #566 +- More than 1000 expressions in a list are not allowed on Oracle. #568 ## 3.2.4 - 2021-12-27 ### Fixed diff --git a/appinfo/info.xml b/appinfo/info.xml index b9999d4b..34a4f796 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -16,7 +16,7 @@ - Use the Recognize app to classify genres by machine learning See [README](https://github.com/rello/audioplayer/blob/master/README.md) file for all supported MIME types and additional information.]]> - 3.2.4 + 3.3.0 agpl Marcel Scherello audioplayer diff --git a/lib/Categories/Tag.php b/lib/Categories/Tag.php index e9166e13..a73da46c 100644 --- a/lib/Categories/Tag.php +++ b/lib/Categories/Tag.php @@ -67,7 +67,7 @@ private function getTrackCount($tagId) $allFiles = $this->tagManager->getObjectIdsForTags($tagId); $result = 0; - $fileChunks = array_chunk($allFiles, 999, true); + $fileChunks = array_chunk($allFiles, 999); foreach ($fileChunks as $fileChunk) { $sql = $this->db->getQueryBuilder(); $sql->selectAlias($sql->func()->count('id'), 'count')