Browse Source

Cleaned up warnings.

Commented out BASE_URL.  Not needed, we handle relative URLs
correctly now.
Steve Thielemann 1 month ago
parent
commit
2f1f6b73e8
1 changed files with 7 additions and 2 deletions
  1. 7 2
      src/main.rs

+ 7 - 2
src/main.rs

@@ -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()?;