mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
Update audiodialog.cpp
This commit is contained in:
parent
02543229fe
commit
fc09ec2ca8
1 changed files with 6 additions and 0 deletions
|
@ -154,6 +154,12 @@ void audioDialog::refreshFileList() {
|
|||
}
|
||||
// For example in this path: '/mnt/onboard/onboard/music/' (with '/' at the end)
|
||||
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);
|
||||
QDir dir{path};
|
||||
// Other file formats could be added, by building more libraries
|
||||
|
|
Loading…
Reference in a new issue