fix(bible): fixed error in _get_passage

This commit is contained in:
Seaswimmer 2024-02-01 19:11:11 -05:00
parent 9e2697b08b
commit feac213017
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -50,12 +50,12 @@ class Bible(commands.Cog):
headers = await self.bot.get_shared_api_tokens("api.bible")
params = {
"content-type": "text",
"include-notes": False,
"include-titles": False,
"include-chapter-numbers": False,
"include-verse-numbers": include_verse_numbers,
"include-verse-spans": False,
"use-org-id": False,
"include-notes": "false",
"include-titles": "false",
"include-chapter-numbers": "false",
"include-verse-numbers": str(include_verse_numbers).lower(),
"include-verse-spans": "false",
"use-org-id": "false",
}
async with self.session.get(url, headers=headers, params=params) as response: