public static function updateThumbnail($kshow, entry $entry, $should_force = false)
 {
     // We don't want to copy thumbnails of entries that are not ready - they are bad and will later be replaced anyway
     if ($entry->getThumbnail() != null && $entry->isReady()) {
         $show_entry = $kshow->getShowEntry();
         return myEntryUtils::createThumbnail($show_entry, $entry, $should_force);
     }
     return false;
 }