Working manual search with UTF-8 support and scrolling. Still need release details and finally, manually selecting release to download.

This commit is contained in:
2023-08-08 10:50:05 -06:00
parent 1ad1b16668
commit 8120debe81
8 changed files with 41 additions and 42 deletions
+1 -7
View File
@@ -53,13 +53,7 @@ async fn main() -> Result<()> {
#[tokio::main]
async fn start_networking(mut network_rx: Receiver<NetworkEvent>, app: &Arc<Mutex<App>>) {
let network = Network::new(
reqwest::Client::builder()
.timeout(Duration::from_secs(45))
.build()
.unwrap(),
app,
);
let network = Network::new(reqwest::Client::new(), app);
while let Some(network_event) = network_rx.recv().await {
network.handle_network_event(network_event).await;