Skip to content

Commit

Permalink
allow cc0 waiver
Browse files Browse the repository at this point in the history
  • Loading branch information
mfenner committed Nov 15, 2024
1 parent bd20a13 commit 94fe6a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/blogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async def extract_single_blog(slug: str):
response = (
supabase.table("blogs")
.select(
"id, slug, feed_url, current_feed_url, home_page_url, archive_prefix, feed_format, created_at, updated_at, registered_at, mastodon, generator_raw, language, favicon, title, description, category, status, user_id, authors, use_api, relative_url, filter, secure, community_id"
"id, slug, feed_url, current_feed_url, home_page_url, archive_prefix, feed_format, created_at, updated_at, registered_at, license, mastodon, generator_raw, language, favicon, title, description, category, status, user_id, authors, use_api, relative_url, filter, secure, community_id"
)
.eq("slug", slug)
.maybe_single()
Expand Down Expand Up @@ -165,7 +165,7 @@ async def extract_single_blog(slug: str):
"description": description,
"favicon": favicon,
"language": language,
"license": "https://creativecommons.org/licenses/by/4.0/legalcode",
"license": config["license"],
"category": config["category"],
"status": config["status"],
"user_id": config["user_id"],
Expand Down

0 comments on commit 94fe6a7

Please sign in to comment.