mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
Don't search explicitly for Person in actor_get().
Some actors are of type Service.
This commit is contained in:
parent
180c3405a0
commit
cde8650df7
1 changed files with 2 additions and 2 deletions
4
data.c
4
data.c
|
@ -274,7 +274,7 @@ int object_add(const char *id, d_char *obj)
|
|||
else
|
||||
status = 500;
|
||||
|
||||
srv_debug(2, xs_fmt("object_add %s %d", id, status));
|
||||
srv_debug(2, xs_fmt("object_add %s %s %d", id, fn, status));
|
||||
|
||||
return status;
|
||||
}
|
||||
|
@ -1094,7 +1094,7 @@ int actor_get(snac *snac, const char *actor, d_char **data)
|
|||
}
|
||||
|
||||
/* read the object */
|
||||
if (!valid_status(status = object_get(actor, &d, "Person")))
|
||||
if (!valid_status(status = object_get(actor, &d, NULL)))
|
||||
return status;
|
||||
|
||||
if (data)
|
||||
|
|
Loading…
Reference in a new issue