Fix issues the OsisParser regenerating VerseContent

BookManager is still currently unable to delete books
This commit is contained in:
Bradlee Speice
2014-11-12 00:34:31 -05:00
parent cce463cde9
commit 8137c4795a
5 changed files with 39 additions and 9 deletions

View File

@ -90,7 +90,7 @@ public class BookItemHolder {
public void onDownloadItem(View v) {
if (bookManager.isInstalled(b)) {
// Remove the book
boolean didRemove = bookManager.removeBook(b);
boolean didRemove = bookManager.removeBook(b, bookManager.getRealDriver(b));
if (didRemove) {
isDownloaded.setImageResource(R.drawable.ic_action_download);
} else {