Skip to content

Commit

Permalink
If multi-title disable filebot (For now)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMillward committed May 10, 2015
1 parent 6391808 commit e540ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def next_movie_to_compress():


def next_movie_to_filebot():
for movie in Movies.select().where((Movies.statusid == 6) & (Movies.filename != "None") & (Movies.filebot == 1)):
for movie in Movies.select().where((Movies.statusid == 6) & (Movies.filename != "None") & (Movies.filebot == 1) & (Movies.multititle == False)):
return movie


Expand Down

0 comments on commit e540ffc

Please sign in to comment.