diff --git a/peach-web/src/context/sbot.rs b/peach-web/src/context/sbot.rs index f8f9b0d..ab2c497 100644 --- a/peach-web/src/context/sbot.rs +++ b/peach-web/src/context/sbot.rs @@ -1,4 +1,4 @@ -use golgi::Sbot; +use golgi::{blobs, Sbot}; use peach_lib::sbot::{SbotConfig, SbotStatus}; use rocket::serde::Serialize; @@ -105,7 +105,7 @@ impl ProfileContext { // determine the path to the blob defined by the value of `context.image` if let Some(ref blob_id) = context.image { - context.blob_path = match sbot_client.get_blob_path(&blob_id).await { + context.blob_path = match blobs::get_blob_path(&blob_id) { Ok(id) => Some(id), Err(_) => None, }