You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Fedify and Fresh on Deno, all up to date versions. Whenever HTML is requested, the Federation object should let Fresh render the output, including error pages.
If I request a URI in the browser (or via curl with Accept: text/html) whose Fresh route returns a 404 error, and the URL maps to the registered actor dispatcher, the Federation handler appears to return a plain text 406 error in place of Fresh's 404 page. This should not happen.
Testing shows that if application/activity+json is requested, the actor dispatcher is correctly invoked, returns null, and the client receives the HTML error page. If text/html is requested, the actor dispatcher is apparently not invoked, and the client receives a plain 406 Not acceptable error.
I hope the source of the problem is not some other part of my project, but this is the issue I am seeing.
The text was updated successfully, but these errors were encountered:
The root cause is that the federation object negotiates the content before determining if the resource exists or not. It was a slight optimization, but I think it should be considered a bug. I'll fix it.
Using Fedify and Fresh on Deno, all up to date versions. Whenever HTML is requested, the
Federation
object should let Fresh render the output, including error pages.If I request a URI in the browser (or via curl with
Accept: text/html
) whose Fresh route returns a 404 error, and the URL maps to the registered actor dispatcher, theFederation
handler appears to return a plain text 406 error in place of Fresh's 404 page. This should not happen.Fresh middleware:
Fresh handler:
Actor dispatcher:
Testing shows that if
application/activity+json
is requested, the actor dispatcher is correctly invoked, returnsnull
, and the client receives the HTML error page. Iftext/html
is requested, the actor dispatcher is apparently not invoked, and the client receives a plain 406Not acceptable
error.I hope the source of the problem is not some other part of my project, but this is the issue I am seeing.
The text was updated successfully, but these errors were encountered: