mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-10-09 21:36:52 +08:00
fixes bug in sending webhook with wrong attr type
This commit is contained in:
parent
2693687552
commit
b217bbcdba
3 changed files with 5 additions and 5 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.0.3-develop1
|
||||
4.0.3-develop2
|
||||
|
|
|
@ -128,7 +128,7 @@ class CrossSeed:
|
|||
"torrents": [t_name],
|
||||
"torrent_category": t_cat,
|
||||
"torrent_tag": "cross-seed",
|
||||
"torrent_tracker": tracker,
|
||||
"torrent_tracker": tracker["url"],
|
||||
}
|
||||
self.notify_attr.append(attr)
|
||||
self.torrents_updated.append(t_name)
|
||||
|
|
|
@ -46,7 +46,7 @@ class ReCheck:
|
|||
"title": "Resuming Torrent",
|
||||
"body": body,
|
||||
"torrents": [t_name],
|
||||
"torrent_tag": tracker["tag"],
|
||||
"torrent_tag": ", ".join(tracker["tag"]),
|
||||
"torrent_category": t_category,
|
||||
"torrent_tracker": tracker["url"],
|
||||
"notifiarr_indexer": tracker["notifiarr"],
|
||||
|
@ -95,7 +95,7 @@ class ReCheck:
|
|||
"title": "Resuming Torrent",
|
||||
"body": body,
|
||||
"torrents": [t_name],
|
||||
"torrent_tag": tracker["tag"],
|
||||
"torrent_tag": ", ".join(tracker["tag"]),
|
||||
"torrent_category": t_category,
|
||||
"torrent_tracker": tracker["url"],
|
||||
"notifiarr_indexer": tracker["notifiarr"],
|
||||
|
@ -120,7 +120,7 @@ class ReCheck:
|
|||
"title": "Rechecking Torrent",
|
||||
"body": body,
|
||||
"torrents": [t_name],
|
||||
"torrent_tag": tracker["tag"],
|
||||
"torrent_tag": ", ".join(tracker["tag"]),
|
||||
"torrent_category": t_category,
|
||||
"torrent_tracker": tracker["url"],
|
||||
"notifiarr_indexer": tracker["notifiarr"],
|
||||
|
|
Loading…
Add table
Reference in a new issue