|
@@ -61,7 +61,9 @@ enum Commands {
|
|
|
static APP_USER_AGENT: &str =
|
|
|
"Mozilla/5.0 (X11; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0";
|
|
|
|
|
|
-static BASE_URL: &str = "https://www.bible.com";
|
|
|
+// Not needed, I process relative URLs correctly now.
|
|
|
+// static BASE_URL: &str = "https://www.bible.com";
|
|
|
+
|
|
|
static VOD_URL: &str = "https://www.bible.com/verse-of-the-day";
|
|
|
|
|
|
static VERSION_URLS: LazyLock<HashMap<&str, &str>> = LazyLock::new(|| {
|
|
@@ -188,11 +190,14 @@ fn main() -> Result<()> {
|
|
|
// Ok! We have something
|
|
|
// more = true;
|
|
|
|
|
|
+ /*
|
|
|
if next_url.starts_with("/") {
|
|
|
url = String::from(BASE_URL) + &next_url;
|
|
|
} else {
|
|
|
url = next_url.to_string();
|
|
|
}
|
|
|
+ */
|
|
|
+ url = next_url;
|
|
|
} else {
|
|
|
// We didn't find the Next Chapter link, so stop.
|
|
|
more = false;
|
|
@@ -322,7 +327,7 @@ fn main() -> Result<()> {
|
|
|
*/
|
|
|
}
|
|
|
|
|
|
- Some(Commands::Verse { fetch }) => {
|
|
|
+ Some(Commands::Verse { fetch: _ }) => {
|
|
|
let client = reqwest::blocking::Client::builder()
|
|
|
.user_agent(APP_USER_AGENT)
|
|
|
.build()?;
|