Browse Source

Accidentally removed lowercasing

master
Dylan Baker 3 years ago
parent
commit
6bd760dd67
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/lib.rs

+ 1
- 1
src/lib.rs View File

@@ -35,7 +35,7 @@ impl App {
35 35
                 if word.is_some() {
36 36
                     let mut word = word.unwrap().to_string();
37 37
                     word.truncate(word.len() - 2);
38
-                    domain = format!("{}.{}", word, tld);
38
+                    domain = format!("{}.{}", word.to_lowercase(), tld);
39 39
                 }
40 40
             });
41 41
         }

Loading…
Cancel
Save