I'm using the Sync API and most of my image thumbnails download successfully but as I'm scrolling through my scrollview and new images begin to load I'll get this repeating and it seems to line up with when I try to download the thumbnail of a .mov
[WARNING] status: NOT_FOUND: api_core.cpp:227: HTTP error 404 [142018d3e799e2eb]
[ERROR] dload: download.cpp:154: DL FAILED: HTTP error 404 [142018d3e799e2eb]
[WARNING] status: NOT_FOUND: api_core.cpp:227: HTTP error 404 [cff7faae807b72ee]
I am checking to make sure a thumb exists before I try to download:
DBFile* file;
id key = path;
if (info.thumbExists) {
file = [self.filesystem openThumbnail:filesystemPath
ofSize:thumbSize // 640x480 (next size down looks bad on retina iPad)
inFormat:DBThumbFormatJPG
error:&fileError];
}