Also,
I can't log anything and I don't know what this snippet is for:
//~Filmography index~
If Pos('<h3 class="ipc-title__text"><span>Credits</span></h3>',CombinedHTML)>0 Then Begin
curPos:=Pos('<h3 class="ipc-title__text"><span>Credits</span></h3>',CombinedHTML);
If curPos>0 Then Begin
EndPos:=curPos;
ItemValueBase:=HTMLValues(CombinedHTML,'<h3 class="ipc-title__text"><span>Credits</span></h3>','<span class="ipc-chip__text">IMDbPro</span>','<span class="ipc-chip__text">','<span class="ipc-chip__count">',', ',EndPos);
If ItemValueBase <> '' then ItemListBase:=ItemListBase+ #13#10 +'Additional Filmography Career: '+ItemValueBase+' ';
LogMessage(' Parse Results Filmography index:'+ItemValueBase+'||');
End;
End;
What it is supposed to catch?