Skip to content

Commit

Permalink
fix: misleading message when manually adding a torrent (#822)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemarcoli authored Oct 26, 2024
1 parent d2f8374 commit 18cfa3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routers/secure/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ async def add_item_manually(request: Request, imdb_id: str = None, input: str =

return {
"success": True,
"message": f"Added {imdb_id} manually to the database (format was {type})",
"message": f"Processing item {item.log_string} with infohash {infohash}",
"item_id": item._id,
"torrent_id": input,
}
Expand Down

0 comments on commit 18cfa3b

Please sign in to comment.