fix offlinedownloadservice crash on 1.7.8

This commit is contained in:
Andrew Dolgov 2013-05-13 09:57:09 +04:00
parent d1563821fa
commit cce378761e

View File

@ -393,7 +393,7 @@ public class OfflineDownloadService extends Service {
stmtInsert.bindLong(index++, article.feed_id);
stmtInsert.bindString(index++, tagsString); // comma-separated tags
stmtInsert.bindString(index++, article.content);
stmtInsert.bindString(index++, article.author);
stmtInsert.bindString(index++, article.author != null ? article.author : "");
if (m_downloadImages) {
Document doc = Jsoup.parse(article.content);