Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBuchanan314 committed Jan 2, 2025
1 parent 9617e8b commit e4c5100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/millipds/appview_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async def service_proxy(request: web.Request, service: Optional[str] = None):
service_route = service["serviceEndpoint"]
break
else:
return web.HTTPBadRequest(f"unable to resolve service {service!r}")
return web.HTTPBadRequest(text=f"unable to resolve service {service!r}")
else: # fall thru to assuming bsky appview
service_did = db.config["bsky_appview_did"]
service_route = db.config["bsky_appview_pfx"]
Expand Down

0 comments on commit e4c5100

Please sign in to comment.