Added m4a extension support in M3U playback (#1724)

* Added `m4a` extension support in M3U playback

* Update CHANGELOG.md
This commit is contained in:
Roman Kelesidis 2024-12-29 23:28:09 +07:00 committed by GitHub
commit 8aa1bd77d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@
**Merged pull requests:**
- Release 2.4.5 🍧️ ([belomaxorka](https://github.com/belomaxorka))
- Added `m4a` extension support in M3U playback [\#1724](https://github.com/torrentpier/torrentpier/pull/1724) ([belomaxorka](https://github.com/belomaxorka))
- Show torrent's announcers list in `filelist.php` page [\#1708](https://github.com/torrentpier/torrentpier/pull/1708) ([belomaxorka](https://github.com/belomaxorka))
- [PHP 8.4] Fixed some deprecations [\#1718](https://github.com/torrentpier/torrentpier/pull/1718) ([belomaxorka](https://github.com/belomaxorka))
- [Configurable] Show magnet-links for guests [\#1712](https://github.com/torrentpier/torrentpier/pull/1712) ([belomaxorka](https://github.com/belomaxorka))

View file

@ -17,7 +17,7 @@ if (!$bb_cfg['torr_server']['enabled']) {
// Valid file formats
$validFormats = [
'audio' => ['mp3', 'flac', 'wav'],
'audio' => ['mp3', 'flac', 'wav', 'm4a'],
'video' => ['mp4', 'mkv', 'avi', 'm4v']
];