Explicitly mark posts and comments as public (ref #1220) #167
Merged
dessalines
merged 1 commits from comments-posts-public
into main
11 months ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'comments-posts-public'
Deleting a branch is permanent. It CANNOT be undone. Continue?
As discussed in #1220 (comment).
.map(|a| a.as_xsd_any_uri().context(location_info!()))
.collect::<Result<Vec<&Url>, anyhow::Error>>()?;
for cid in community_ids {
let community = get_or_fetch_and_upsert_community(&cid, context, request_counter).await;
I'm confused about this. Now a post is addressed to the community, and public, but public isn't upsertable. What happen when it encounters
public()
in this loop?It returns an Err and doesn't go into the if below, so the value is skipped.
f899831ed3
into main 11 months agof899831ed3
.