Update audiodialog.cpp

This commit is contained in:
Szybet 2023-09-10 00:01:32 +02:00 committed by GitHub
parent 02543229fe
commit fc09ec2ca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,6 +154,12 @@ void audioDialog::refreshFileList() {
} }
// For example in this path: '/mnt/onboard/onboard/music/' (with '/' at the end) // For example in this path: '/mnt/onboard/onboard/music/' (with '/' at the end)
QString path = readFile(".config/e-2-audio/path").replace("\n", ""); QString path = readFile(".config/e-2-audio/path").replace("\n", "");
// Needed by gui apps
if(path.isEmpty()) {
path = "/mnt/onboard/onboard/music/";
}
log("Path for audio files: '" + path + "'", className); log("Path for audio files: '" + path + "'", className);
QDir dir{path}; QDir dir{path};
// Other file formats could be added, by building more libraries // Other file formats could be added, by building more libraries