diff --git a/lib/jekyll-import/importers/tumblr.rb b/lib/jekyll-import/importers/tumblr.rb
index 02fa9b00..36dad404 100644
--- a/lib/jekyll-import/importers/tumblr.rb
+++ b/lib/jekyll-import/importers/tumblr.rb
@@ -132,7 +132,11 @@ def self.post_to_hash(post, format)
title = post["video-title"]
content = post["video-player"]
unless post["video-caption"].nil?
- content << "
" + post["video-caption"]
+ unless content.nil?
+ content << "
" + post["video-caption"]
+ else
+ content = post["video-caption"]
+ end
end
when "answer"
title = post["question"]