mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
update python version and capture individual exception for torrent element & bump patch
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"projectName": "mediafusion",
|
||||
"lastCommit": "4e29d83"
|
||||
"lastCommit": "65a6781"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"id": "mhdzumair.addons.mediafusion",
|
||||
"version": "3.4.1",
|
||||
"version": "3.4.2",
|
||||
"name": "Media Fusion",
|
||||
"contactEmail": "mhdzumair@gmail",
|
||||
"description": "Watch Tamil, Hindi, Malayalam, Kannada, English, and dubbed movies & series with the Media Fusion add-on. Source: https://github.com/mhdzumair/MediaFusion",
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
python-3.11.5
|
||||
python-3.11.6
|
||||
@@ -138,6 +138,7 @@ async def process_movie(
|
||||
return
|
||||
|
||||
for torrent_element in torrent_elements:
|
||||
try:
|
||||
await download_and_save_torrent(
|
||||
torrent_element,
|
||||
scraper=scraper,
|
||||
@@ -146,6 +147,12 @@ async def process_movie(
|
||||
media_type=media_type,
|
||||
page_link=page_link,
|
||||
)
|
||||
except Exception as e:
|
||||
logging.error(
|
||||
f"Error processing torrent {page_link}: {e}",
|
||||
exc_info=True,
|
||||
stack_info=True,
|
||||
)
|
||||
|
||||
return True
|
||||
except Exception as e:
|
||||
|
||||
Reference in New Issue
Block a user