From d009163bd039800bdb80816cdfc21fbdf38fe49b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 27 Nov 2025 11:15:30 -0500 Subject: [PATCH] Update books.py filename map for Solomon's Song MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update _BOOK_FILENAME_MAP to use "Solomon's Song" as the key and point to the renamed file "solomons_song.json". This fixes the book data loading issue where get_book_data() couldn't find the book introduction, themes, and other metadata, causing the page to fall back to generic auto-generated content. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/books.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kjvstudy_org/books.py b/kjvstudy_org/books.py index 3a11bc1..ad3875e 100644 --- a/kjvstudy_org/books.py +++ b/kjvstudy_org/books.py @@ -35,7 +35,7 @@ _BOOK_FILENAME_MAP = { "Psalms": "psalms.json", "Proverbs": "proverbs.json", "Ecclesiastes": "ecclesiastes.json", - "Song of Solomon": "song_of_solomon.json", + "Solomon's Song": "solomons_song.json", "Isaiah": "isaiah.json", "Jeremiah": "jeremiah.json", "Lamentations": "lamentations.json",