check if tags are properly saved (part 2)
This commit is contained in:
@@ -2645,12 +2645,17 @@ int main(int argc, char *argv[])
|
|||||||
TagLib::FileRef f(path.c_str());
|
TagLib::FileRef f(path.c_str());
|
||||||
if (f.isNull())
|
if (f.isNull())
|
||||||
{
|
{
|
||||||
ShowMessage("Error updating tags in '%s'!", (*mLibSongs)[i].GetFile().c_str());
|
ShowMessage("Error opening file '%s'!", (*mLibSongs)[i].GetFile().c_str());
|
||||||
success = 0;
|
success = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
f.tag()->setAlbum(ToWString(new_album));
|
f.tag()->setAlbum(ToWString(new_album));
|
||||||
f.save();
|
if (!f.save())
|
||||||
|
{
|
||||||
|
ShowMessage("Error writing tags in '%s'!", (*mLibSongs)[i].GetFile().c_str());
|
||||||
|
success = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user