summary refs log tree commit diff stats
path: root/post.go
diff options
context:
space:
mode:
Diffstat (limited to 'post.go')
-rw-r--r--post.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/post.go b/post.go
index d6da21f..ae1ef26 100644
--- a/post.go
+++ b/post.go
@@ -15,7 +15,7 @@ import (
 // registry before adding each user to the local cache.
 func apiPostUser(w http.ResponseWriter, r *http.Request) {
 	if err := r.ParseForm(); err != nil {
-		log400(w, r, err.Error())
+		log400(w, r, "Error Parsing Values: "+err.Error())
 		return
 	}
 
@@ -49,8 +49,7 @@ func apiPostUser(w http.ResponseWriter, r *http.Request) {
 
 	statuses, err := registry.ParseUserTwtxt(out, nick, urls)
 	if err != nil {
-		log400(w, r, "Error Parsing twtxt Data: "+err.Error())
-		return
+		log.Printf("Error Parsing User Data: %v\n", err)
 	}
 
 	if err := twtxtCache.AddUser(nick, urls, uip, statuses); err != nil {
a88c860bfee2f747a3af'>^
9506fb8e ^
1159f9ec ^
9506fb8e ^
49ae0dd1 ^
8db3c4b1 ^
d88232a3 ^

cfdbb9d6 ^
b5393406 ^
06aefcf5 ^

a6791aee ^
d88232a3 ^
a6791aee ^
9506fb8e ^
8db3c4b1 ^
bf391538 ^
3c041abb ^

8db3c4b1 ^
e6dfc442 ^
a6791aee ^
b5393406 ^


ddf828fb ^
a6791aee ^
8db3c4b1 ^
a6791aee ^


c1033553 ^
a6791aee ^
c1033553 ^

a6791aee ^
06aefcf5 ^
42fd3690 ^
a6791aee ^
06aefcf5 ^
d88232a3 ^

1159f9ec ^
49ae0dd1 ^
9506fb8e ^
6f43de0a ^


d88232a3 ^
cfdbb9d6 ^

ea87d005 ^
6f43de0a ^

e6dfc442 ^
06aefcf5 ^
5715beca ^

491a5312 ^
06aefcf5 ^

8db3c4b1 ^
ea87d005 ^
06aefcf5 ^
5715beca ^

491a5312 ^
06aefcf5 ^

8db3c4b1 ^
5715beca ^
06aefcf5 ^

8db3c4b1 ^

06aefcf5 ^

8db3c4b1 ^
ea87d005 ^
c2f737e0 ^

e7733577 ^
e6dfc442 ^

cfdbb9d6 ^
e6dfc442 ^


cfdbb9d6 ^
5715beca ^
e6dfc442 ^
b5393406 ^
4e9450f9 ^



8db3c4b1 ^
b5393406 ^

ea87d005 ^
e07cfa31 ^

ddf828fb ^
b5393406 ^

8db3c4b1 ^
b5393406 ^
ddf828fb ^
e6dfc442 ^
8db3c4b1 ^

ea87d005 ^
9a78b644 ^




a396b3a0 ^

6f43de0a ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136