@fedify/fedify 1.1.0-dev.429 → 1.1.0-dev.431
Sign up to get free protection for your applications and to get access to all the features.
package/esm/webfinger/handler.js
CHANGED
@@ -24,7 +24,7 @@ export async function handleWebFinger(request, { context, actorDispatcher, actor
|
|
24
24
|
if (e instanceof TypeError) {
|
25
25
|
return new Response("Invalid resource URL.", { status: 400 });
|
26
26
|
}
|
27
|
-
throw
|
27
|
+
throw e;
|
28
28
|
}
|
29
29
|
if (actorDispatcher == null) {
|
30
30
|
logger.error("Actor dispatcher is not set.");
|