mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-02-14 19:41:32 +01:00
Fix for trying to get story URLs with no books selected.
This commit is contained in:
parent
79971745a2
commit
be34b6718f
1 changed files with 1 additions and 1 deletions
|
|
@ -420,7 +420,7 @@ class FanFictionDownLoaderPlugin(InterfaceAction):
|
|||
|
||||
def list_story_urls(self):
|
||||
'''Get list of URLs from existing books.'''
|
||||
if self.gui.current_view().selectionModel().selectedRows() == 0 :
|
||||
if not self.gui.current_view().selectionModel().selectedRows() :
|
||||
self.gui.status_bar.show_message(_('No Selected Books to Get URLs From'),
|
||||
3000)
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue