From ee8b27ac168e654b19ccda52f53a9c2a9eed643f Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 3 Feb 2021 18:15:27 +0100 Subject: [PATCH] :bug: --- funcs/other/bedreNetflix.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/funcs/other/bedreNetflix.py b/funcs/other/bedreNetflix.py index 2ef6ef7..f0dc6e9 100644 --- a/funcs/other/bedreNetflix.py +++ b/funcs/other/bedreNetflix.py @@ -79,8 +79,8 @@ class BedreNetflix(): r = requests.post(url= radarrURL+"movie?apikey="+apiKey,json = postData) if r.status_code == 201: - await channel.send("Movie successfully added to Bedre Netflix") - logThis("Added a movie to Bedre Netflix") + await channel.send(postData["title"]+" successfully added to Bedre Netflix") + logThis("Added "+postData["title"]+" to Bedre Netflix") elif r.status_code == 400: await channel.send("The movie is already on Bedre Netflix") else: @@ -155,8 +155,8 @@ class BedreNetflix(): r = requests.post(url= sonarrURL+"series?apikey="+apiKey,json = postData) if r.status_code == 201: - await channel.send("Show successfully added to Bedre Netflix") - logThis("Added a show to Bedre Netflix") + await channel.send(postData["title"]+" successfully added to Bedre Netflix") + logThis("Added a "+postData["title"]+" to Bedre Netflix") elif r.status_code == 400: await channel.send("The show is already on Bedre Netflix") else: