reorder NS position

This commit is contained in:
yggverse 2024-10-24 16:12:32 +03:00
parent dbadbfe310
commit 1d9e0bf9b2

View File

@ -229,13 +229,7 @@ impl Page {
Some(&cancellable.clone()), Some(&cancellable.clone()),
move |o| match o { move |o| match o {
Ok(_) => { Ok(_) => {
// Update // Define local namespace
meta.borrow_mut().status = Some(Status::Request);
meta.borrow_mut().description = Some(gformat!("Request data from {host}.."));
action_update.activate(Some(&id));
// Define local NS
use gemini::client::{ use gemini::client::{
connection::input_stream::ByteBuffer, connection::input_stream::ByteBuffer,
response::{ response::{
@ -247,7 +241,13 @@ impl Page {
} }
}; };
// Read response // Update page status
meta.borrow_mut().status = Some(Status::Request);
meta.borrow_mut().description = Some(gformat!("Request data from {host}.."));
action_update.activate(Some(&id));
// Create new byte buffer and read server response
ByteBuffer::new().read_input_stream_async( ByteBuffer::new().read_input_stream_async(
connection.input_stream(), connection.input_stream(),
cancellable.clone(), cancellable.clone(),