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.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/post.go b/post.go
index 7846c7e..3f571e3 100644
--- a/post.go
+++ b/post.go
@@ -52,7 +52,7 @@ func apiPostUser(w http.ResponseWriter, r *http.Request) {
 		log.Printf("Error Parsing User Data: %v\n", err.Error())
 	}
 
-	if err := twtxtCache.AddUser(nick, urls, uip, statuses); err != nil {
+	if err := twtxtCache.AddUser(nick, urls, "", uip, statuses); err != nil {
 		log400(w, r, "Error Adding User to Cache: "+err.Error())
 		return
 	}
>
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