mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-12 21:10:22 +03:00
Deleted unused argument in timeline_request().
This commit is contained in:
parent
40b3f739d2
commit
6b344b8c2e
@ -78,7 +78,7 @@ int actor_request(snac *snac, char *actor, d_char **data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int timeline_request(snac *snac, char **id, char *referrer, d_char **wrk)
|
int timeline_request(snac *snac, char **id, d_char **wrk)
|
||||||
/* ensures that an entry and its ancestors are in the timeline */
|
/* ensures that an entry and its ancestors are in the timeline */
|
||||||
{
|
{
|
||||||
int status = 0;
|
int status = 0;
|
||||||
@ -116,7 +116,7 @@ int timeline_request(snac *snac, char **id, char *referrer, d_char **wrk)
|
|||||||
char *in_reply_to = xs_dict_get(object, "inReplyTo");
|
char *in_reply_to = xs_dict_get(object, "inReplyTo");
|
||||||
|
|
||||||
/* recurse! */
|
/* recurse! */
|
||||||
timeline_request(snac, &in_reply_to, referrer, NULL);
|
timeline_request(snac, &in_reply_to, NULL);
|
||||||
|
|
||||||
/* finally store */
|
/* finally store */
|
||||||
timeline_add(snac, *id, object);
|
timeline_add(snac, *id, object);
|
||||||
@ -417,7 +417,7 @@ d_char *msg_admiration(snac *snac, char *object, char *type)
|
|||||||
xs *wrk = NULL;
|
xs *wrk = NULL;
|
||||||
|
|
||||||
/* call the object */
|
/* call the object */
|
||||||
timeline_request(snac, &object, snac->actor, &wrk);
|
timeline_request(snac, &object, &wrk);
|
||||||
|
|
||||||
if (valid_status(object_get(object, &a_msg, NULL))) {
|
if (valid_status(object_get(object, &a_msg, NULL))) {
|
||||||
xs *rcpts = xs_list_new();
|
xs *rcpts = xs_list_new();
|
||||||
@ -611,7 +611,7 @@ d_char *msg_note(snac *snac, char *content, char *rcpts, char *in_reply_to, char
|
|||||||
xs *wrk = NULL;
|
xs *wrk = NULL;
|
||||||
|
|
||||||
/* demand this thing */
|
/* demand this thing */
|
||||||
timeline_request(snac, &in_reply_to, NULL, &wrk);
|
timeline_request(snac, &in_reply_to, &wrk);
|
||||||
|
|
||||||
if (valid_status(object_get(in_reply_to, &p_msg, NULL))) {
|
if (valid_status(object_get(in_reply_to, &p_msg, NULL))) {
|
||||||
/* add this author as recipient */
|
/* add this author as recipient */
|
||||||
@ -885,7 +885,7 @@ int process_message(snac *snac, char *msg, char *req)
|
|||||||
char *in_reply_to = xs_dict_get(object, "inReplyTo");
|
char *in_reply_to = xs_dict_get(object, "inReplyTo");
|
||||||
xs *wrk = NULL;
|
xs *wrk = NULL;
|
||||||
|
|
||||||
timeline_request(snac, &in_reply_to, NULL, &wrk);
|
timeline_request(snac, &in_reply_to, &wrk);
|
||||||
|
|
||||||
if (timeline_add(snac, id, object)) {
|
if (timeline_add(snac, id, object)) {
|
||||||
snac_log(snac, xs_fmt("new 'Note' %s %s", actor, id));
|
snac_log(snac, xs_fmt("new 'Note' %s %s", actor, id));
|
||||||
@ -926,7 +926,7 @@ int process_message(snac *snac, char *msg, char *req)
|
|||||||
if (xs_type(object) == XSTYPE_DICT)
|
if (xs_type(object) == XSTYPE_DICT)
|
||||||
object = xs_dict_get(object, "id");
|
object = xs_dict_get(object, "id");
|
||||||
|
|
||||||
timeline_request(snac, &object, actor, &wrk);
|
timeline_request(snac, &object, &wrk);
|
||||||
|
|
||||||
if (valid_status(object_get(object, &a_msg, NULL))) {
|
if (valid_status(object_get(object, &a_msg, NULL))) {
|
||||||
char *who = xs_dict_get(a_msg, "attributedTo");
|
char *who = xs_dict_get(a_msg, "attributedTo");
|
||||||
|
Loading…
Reference in New Issue
Block a user