summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--activitypub.c2
-rw-r--r--data.c4
-rw-r--r--main.c10
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) { /** **/
diff --git a/data.c b/data.c
index 1312790..cb2d2ec 100644
--- a/data.c
+++ b/data.c
@@ -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
diff --git a/main.c b/main.c
index 23f525c..cbd9921 100644
--- a/main.c
+++ b/main.c
@@ -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
62xs_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
70int main(int argc, char *argv[]) 60int main(int argc, char *argv[])
71{ 61{
72 char *cmd; 62 char *cmd;