summaryrefslogtreecommitdiffstats
path: root/src/stackexchange.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stackexchange.rs')
-rw-r--r--src/stackexchange.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/stackexchange.rs b/src/stackexchange.rs
index 77e8647..b6c6a16 100644
--- a/src/stackexchange.rs
+++ b/src/stackexchange.rs
@@ -91,9 +91,13 @@ impl StackExchange {
}
/// Search query at stack exchange and get the top answer body
+ ///
+ /// For now, use only the first configured site, since, parodoxically, sites
+ /// with the worst results will finish executing first, since there's less
+ /// data to retrieve.
pub async fn search_lucky(&self) -> Result<String> {
Ok(self
- .search_advanced(1)
+ .search_advanced_site(self.config.sites.iter().next().unwrap(), 1)
.await?
.into_iter()
.next()