diff options
| -rw-r--r-- | activitypub.c | 2 | ||||
| -rw-r--r-- | data.c | 4 | ||||
| -rw-r--r-- | main.c | 10 |
3 files changed, 3 insertions, 13 deletions
diff --git a/activitypub.c b/activitypub.c index 3e306a6..0ddb266 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -1855,7 +1855,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) | |||
| 1855 | } | 1855 | } |
| 1856 | } | 1856 | } |
| 1857 | else | 1857 | else |
| 1858 | snac_log(snac, xs_fmt("warning: empty or null creation date for %s", actor)); | 1858 | snac_debug(snac, 1, xs_fmt("warning: empty or null creation date for %s", actor)); |
| 1859 | } | 1859 | } |
| 1860 | 1860 | ||
| 1861 | if (strcmp(type, "Follow") == 0) { /** **/ | 1861 | if (strcmp(type, "Follow") == 0) { /** **/ |
| @@ -2225,7 +2225,7 @@ void enqueue_input(snac *snac, const xs_dict *msg, const xs_dict *req, int retri | |||
| 2225 | 2225 | ||
| 2226 | qmsg = _enqueue_put(fn, qmsg); | 2226 | qmsg = _enqueue_put(fn, qmsg); |
| 2227 | 2227 | ||
| 2228 | snac_debug(snac, 1, xs_fmt("enqueue_input %s", fn)); | 2228 | snac_debug(snac, 1, xs_fmt("enqueue_input %s %s", fn, xs_dict_get(msg, "id"))); |
| 2229 | } | 2229 | } |
| 2230 | 2230 | ||
| 2231 | 2231 | ||
| @@ -2240,7 +2240,7 @@ void enqueue_shared_input(const xs_dict *msg, const xs_dict *req, int retries) | |||
| 2240 | 2240 | ||
| 2241 | qmsg = _enqueue_put(fn, qmsg); | 2241 | qmsg = _enqueue_put(fn, qmsg); |
| 2242 | 2242 | ||
| 2243 | srv_debug(1, xs_fmt("enqueue_shared_input %s", fn)); | 2243 | srv_debug(1, xs_fmt("enqueue_shared_input %s %s", fn, xs_dict_get(msg, "id"))); |
| 2244 | } | 2244 | } |
| 2245 | 2245 | ||
| 2246 | 2246 | ||
| @@ -57,16 +57,6 @@ char *get_argv(int *argi, int argc, char *argv[]) | |||
| 57 | 57 | ||
| 58 | #define GET_ARGV() get_argv(&argi, argc, argv) | 58 | #define GET_ARGV() get_argv(&argi, argc, argv) |
| 59 | 59 | ||
| 60 | #include "xs_html.h" | ||
| 61 | |||
| 62 | xs_html *html_note(snac *user, char *summary, | ||
| 63 | char *div_id, char *form_id, | ||
| 64 | char *ta_plh, char *ta_content, | ||
| 65 | char *edit_id, char *actor_id, | ||
| 66 | xs_val *cw_yn, char *cw_text, | ||
| 67 | xs_val *mnt_only, char *redir, | ||
| 68 | char *in_reply_to, int poll); | ||
| 69 | |||
| 70 | int main(int argc, char *argv[]) | 60 | int main(int argc, char *argv[]) |
| 71 | { | 61 | { |
| 72 | char *cmd; | 62 | char *cmd; |