Browse Source

Also strip cgi variables (things after ?) in key request for checking.

default 1 year ago
parent
commit
de6d61f66f
1 changed files with 7 additions and 2 deletions
  1. 7 2
      http.c

+ 7 - 2
http.c

@@ -171,10 +171,15 @@ int check_signature(xs_dict *req, xs_str **err)
     if ((p = strchr(keyId, '#')) != NULL)
         *p = '\0';
 
+    /* also strip cgi variables */
+    if ((p = strchr(keyId, '?')) != NULL)
+        *p = '\0';
+
     xs *actor = NULL;
+    int status;
 
-    if (!valid_status(actor_request(NULL, keyId, &actor))) {
-        *err = xs_fmt("unknown actor %s", keyId);
+    if (!valid_status((status = actor_request(NULL, keyId, &actor)))) {
+        *err = xs_fmt("actor request error %s %d", keyId, status);
         return 0;
     }