fix(bible): fixed translate_book_name being case sensitive
All checks were successful
Actions / Lint Code (Pylint) (push) Successful in 16s
Actions / Build Documentation (MkDocs) (push) Successful in 13s

This commit is contained in:
Seaswimmer 2024-02-01 20:08:27 -05:00
parent ad7616bef6
commit 88aad510b9
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -39,7 +39,8 @@ class Bible(commands.Cog):
book_name_list = book_name.split()
for w in book_name_list:
book_name_list.remove(w)
book_name_list.append(w if w.lower() == "of" else w.title())
book_name_list.append(w.lower() if w.lower() == "of" else w.title())
book_name = " ".join(book_name_list)
books = await self._get_books(bible_id)
for book in books:
if book_name in (book["abbreviation"], book["name"]):