This commit is contained in:
SpikeHD
2023-03-23 08:53:42 -07:00
parent 01d12178ba
commit 90b86b42d0
7 changed files with 11 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ pub(crate) async fn query(site: &str) -> String {
.ok();
if response.is_some() {
return response.unwrap().text().await.unwrap();
response.unwrap().text().await.unwrap()
} else {
false.to_string()
}