summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cache.go2
-rw-r--r--post.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/cache.go b/cache.go
index 4f6b90e..0a22f55 100644
--- a/cache.go
+++ b/cache.go
@@ -58,7 +58,7 @@ func refreshCache() {
 	// to add locally.
 	remoteRegistries.Mu.RLock()
 	for _, v := range remoteRegistries.List {
-		err := twtxtCache.ScrapeRemoteRegistry(v)
+		err := twtxtCache.CrawlRemoteRegistry(v)
 		if err != nil {
 			log.Printf("Error while refreshing local copy of remote registry user data: %v\n", err)
 		}
diff --git a/post.go b/post.go
index 103c254..21b3286 100644
--- a/post.go
+++ b/post.go
@@ -39,7 +39,7 @@ func apiPostUser(w http.ResponseWriter, r *http.Request) {
 		remoteRegistries.List = append(remoteRegistries.List, urls)
 		remoteRegistries.Mu.Unlock()
 
-		if err := twtxtCache.ScrapeRemoteRegistry(urls); err != nil {
+		if err := twtxtCache.CrawlRemoteRegistry(urls); err != nil {
 			log400(w, r, err.Error())
 			return
 		}
anger/commit/doc/pydoc/ranger.__main__.html?h=v1.9.3&id=b3556b21e23eb3381b220e0d3319d94b3a89e0ac'>b3556b21 ^
62cd83ba ^



b3556b21 ^
62cd83ba ^






4c13e1f2 ^
















62cd83ba ^
4c13e1f2 ^

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