From d57d9f6fe1cf1d2e9bab0c90f49265e45d122110 Mon Sep 17 00:00:00 2001 From: Nutomic Date: Fri, 13 Sep 2024 17:59:25 +0200 Subject: [PATCH] If id of fetched object doesnt match url, refetch it (fixes #4964) (#5022) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aad3ab169..6fdaa0c98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,9 +16,9 @@ checksum = "8f27d075294830fcab6f66e320dab524bc6d048f4a151698e153205559113772" [[package]] name = "activitypub_federation" -version = "0.5.8" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b86eea7a032da501fe07b04a83c10716ea732c45e6943d7f045bc053aca03f2a" +checksum = "c28c1d450c1120e9c7bf45a2b25d29b2b52b51a8bdbe941824d1beb52ab6e94a" dependencies = [ "activitystreams-kinds", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index 38d4adc5f..5e213dea1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -100,7 +100,7 @@ lemmy_db_views = { version = "=0.19.6-beta.7", path = "./crates/db_views" } lemmy_db_views_actor = { version = "=0.19.6-beta.7", path = "./crates/db_views_actor" } lemmy_db_views_moderator = { version = "=0.19.6-beta.7", path = "./crates/db_views_moderator" } lemmy_federate = { version = "=0.19.6-beta.7", path = "./crates/federate" } -activitypub_federation = { version = "0.5.8", default-features = false, features = [ +activitypub_federation = { version = "0.5.9", default-features = false, features = [ "actix-web", ] } diesel = "2.1.6"