Try this it works just fine, around line 214 in file dropbox-photo-sideloader.php in wp-content/plugins/dropbox-photo-sideloader
replace:
$result = media_sideload_image(urldecode($tempurl[‘url’]), $post_id);
with:
$result = media_sideload_image(urldecode(rawurlencode($tempurl['url'])), $post_id);
I also added:
$file = rawurlencode($file);
above:
echo "
<li>Sideloading {$file} ... ";
just for an intelligent check
works current wp version as of this post.
Merry Christmas</li>