Skip to content

Commit

Permalink
3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rello committed Mar 29, 2022
1 parent a962a17 commit 32ac3f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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.]]></description>
<version>3.2.4</version>
<version>3.3.0</version>
<licence>agpl</licence>
<author>Marcel Scherello</author>
<namespace>audioplayer</namespace>
Expand Down
2 changes: 1 addition & 1 deletion lib/Categories/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 32ac3f6

Please sign in to comment.