Skip to content

Commit

Permalink
fix(download): Remove double not in ChapterDownloadActions (#1149)
Browse files Browse the repository at this point in the history
  • Loading branch information
quickdesh authored Oct 9, 2023
1 parent ad31d67 commit 19b543d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ class MangaInfoScreenModel(

DownloadAction.UNVIEWED_ITEMS -> getUnreadChapters()
}
if (!chaptersToDownload.isNotEmpty()) {
if (chaptersToDownload.isNotEmpty()) {
startDownload(chaptersToDownload, false)
}
}
Expand Down

0 comments on commit 19b543d

Please sign in to comment.