aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plugins/General/rgscan/rgscandialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/General/rgscan/rgscandialog.cpp b/src/plugins/General/rgscan/rgscandialog.cpp
index c925611e3..bfd8b3cec 100644
--- a/src/plugins/General/rgscan/rgscandialog.cpp
+++ b/src/plugins/General/rgscan/rgscandialog.cpp
@@ -429,10 +429,11 @@ void RGScanDialog::on_writeButton_clicked()
writeAPETag(file.APETag(true), item);
file.save();
}
- else if(ext == "m4a")
+ else if(ext == "m4a") //MPEG-4 Part 14
{
TagLib::MP4::File file(qPrintable(item->url));
writeMP4Tag(file.tag(), item);
+ file.save();
}
}
}