mirror of
https://github.com/evilhero/mylar
synced 2025-02-20 21:16:51 +00:00
Enabled notifications for the new Public Torrent providers ('Manual Post-Processing - Notify on Completed Torrents')
This commit is contained in:
parent
1f3bd4d60a
commit
17d000af0e
1 changed files with 1 additions and 1 deletions
|
@ -1178,7 +1178,7 @@ class PostProcessor(object):
|
|||
comicnzb = myDB.selectone("SELECT * from comics WHERE comicid=?", [comicid]).fetchone()
|
||||
issuenzb = myDB.selectone("SELECT * from issues WHERE issueid=? AND comicid=? AND ComicName NOT NULL", [issueid, comicid]).fetchone()
|
||||
if ml is not None and mylar.SNATCHEDTORRENT_NOTIFY:
|
||||
snatchnzb = myDB.selectone("SELECT * from snatched WHERE IssueID=? AND ComicID=? AND (provider=? OR provider=?) AND Status='Snatched'", [issueid, comicid, 'KAT', '32P']).fetchone()
|
||||
snatchnzb = myDB.selectone("SELECT * from snatched WHERE IssueID=? AND ComicID=? AND (provider=? OR provider=? OR provider=? OR provider=?) AND Status='Snatched'", [issueid, comicid, 'TPSE', 'DEM', 'WWT', '32P']).fetchone()
|
||||
if snatchnzb is None:
|
||||
logger.fdebug(module + ' Was not downloaded with Mylar and the usage of torrents. Disabling torrent manual post-processing completion notification.')
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue