From a86ba4dffcf42c9624db5d7ddd18f850185fb173 Mon Sep 17 00:00:00 2001 From: Paper Date: Mon, 19 May 2025 00:03:22 -0400 Subject: [PATCH] GPodDevice: Add ALAC to supported file types for iPods There are some iPods which do not support ALAC, but they are quite rare. Anything 3rd gen and newer, which most people are likely to be using, will work if upgraded to the latest firmware (they probably are already on it...) --- src/device/gpoddevice.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/device/gpoddevice.cpp b/src/device/gpoddevice.cpp index 4787a37f7..d3db15e22 100644 --- a/src/device/gpoddevice.cpp +++ b/src/device/gpoddevice.cpp @@ -409,5 +409,6 @@ bool GPodDevice::FinishDelete(bool success, QString &error_text) { bool GPodDevice::GetSupportedFiletypes(QList *ret) { *ret << Song::FileType::MP4; *ret << Song::FileType::MPEG; + *ret << Song::FileType::ALAC; return true; }