I am writing a program to clear data from IMDB using the IMDB scrambling API. It works wonderfully, but sometimes .. it just stops. No exception is raised, there is no error, nothing is displayed in intellitrace, it cannot find the reason why it stops. And this is interesting, because the point where it stops is completely random!
So, for example, if I run it, it successfully flushes the data 100 times, but if I restart it, it will get stuck after 50. I really have no idea why it does it.
If I paused the code, if it got stuck, it doesnโt write anything (for example, it will work fine without any errors) (or I just donโt notice it). The green marker on the left is on
IMDb imdb_movie = new IMDb(link, false);
Source code can be found here.
Any ideas? Thanks, go ahead!
source share