Replies: 2 comments
-
Is this what you intended? It looks fine on my server, so it could be a cache issue. |
Beta Was this translation helpful? Give feedback.
0 replies
-
One way to flush the profile cache is to send an import { Update, Person } from "@fedify/fedify";
const update = new Update({
object: new Person({
// Updated profile data...
})
});
const fedCtx = federation.createContext(req);
await fedCtx.sendActivity(
{ handle },
followers,
update,
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey @dahlia I'm trying to update the image here: https://indieweb.social/@Example@thomasreggi-fedi-blog-87.deno.dev
Here's the code, it's a fresh route:
https://github.com/reggi/fedi-blog/blob/main/routes/profile/index.tsx#L55-L76
Here's the log from jsonld:
Beta Was this translation helpful? Give feedback.
All reactions