summaryrefslogtreecommitdiffstats
path: root/crates/sellershut/src/entity/user.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/sellershut/src/entity/user.rs')
-rw-r--r--crates/sellershut/src/entity/user.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/sellershut/src/entity/user.rs b/crates/sellershut/src/entity/user.rs
index b420682..2d09acc 100644
--- a/crates/sellershut/src/entity/user.rs
+++ b/crates/sellershut/src/entity/user.rs
@@ -14,8 +14,8 @@ use activitypub_federation::{
};
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
-use sqlx::types::time::OffsetDateTime;
use stack_up::{Environment, Services};
+use time::OffsetDateTime;
use tracing::trace;
use url::Url;
use uuid::Uuid;
@@ -180,6 +180,7 @@ impl User {
A: Activity + Serialize + std::fmt::Debug + Send + Sync,
<A as Activity>::Error: From<anyhow::Error> + From<serde_json::Error>,
{
+ trace!("sending accept activity");
let activity = WithContext::new_default(activity);
// Send through queue in some cases and bypass it in others to test both code paths
if use_queue {