Skip to content

Commit

Permalink
Change class name used for the passage wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
mokalovesoulmate committed Aug 27, 2024
1 parent 5d68689 commit 1316371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/v1/functions/verse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getVerse = async (book: string, chapter: string, verses: string, ve
if (unavailable) return { code: 400, message: "Verse not found" };

const versesArray: Array<String> = [];
const wrapper = $(".text-19");
const wrapper = $(".text-17");

await wrapper.each((i, p) => {
let unformattedVerse = $(p).eq(0).text();
Expand Down

0 comments on commit 1316371

Please sign in to comment.