fix(bible): fixed bible verses being returned as html
This commit is contained in:
parent
a14ec9bceb
commit
894b1a3714
1 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,8 @@ class Bible(commands.Cog):
|
|||
"""Get a Bible passage from the API.bible API."""
|
||||
url = f"https://api.scripture.api.bible/v1/bibles/{bible_id}/passages/{passage_id}"
|
||||
headers = await self.bot.get_shared_api_tokens("api.bible")
|
||||
async with self.session.get(url, headers=headers) as response:
|
||||
query = {"content_type": "text", "include-chapter-numbers": False, "include-verse-numbers": False, "include-verse-spans": False}
|
||||
async with self.session.get(url, headers=headers, params=query) as response:
|
||||
data = await response.json()
|
||||
return data["data"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue