Properly set User URL - WXXX
Brought to you by:
myers_carpenter
Hi,
setting the URL does not work. Here is a quick fix (which does not allow setting the description):
id3v2:609 (the entire case block):
case ID3FID_WWWUSER:
{
if (pFrame != NULL)
{
char *sURL = ID3_GetString(pFrame, ID3FN_URL);
ID3_Frame * todel = myTag.RemoveFrame(pFrame);
delete todel;
}
if (strlen(frameList[ii].data) > 0) {
myFrame->Field(ID3FN_URL) = frameList[ii].data;
myTag.AttachFrame(myFrame);
}
break;
}
this is a fix for the 0.1.12 public release.