diff options
author | FChannel <> | 2021-06-30 20:07:54 -0700 |
---|---|---|
committer | FChannel <> | 2021-06-30 20:07:54 -0700 |
commit | 0e8ee1616fdd4a0ffcdd36cf135b34ea23979bb4 (patch) | |
tree | 5180fe63282de040aadaec30cd0041008254287c | |
parent | f9c47cfe6970a49c3d913ba029f67ebac1a623e4 (diff) |
using FingerActor does not work for main instance had to fix
-rw-r--r-- | main.go | 2 | ||||
-rw-r--r-- | static/faq.html | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1123,7 +1123,7 @@ func main() { // delay to give instance time to boot up time.Sleep(15 * time.Second) - checkActor := FingerActor(actor) + checkActor := GetActor(actor) if checkActor.Id == actor { if !alreadyIndex { diff --git a/static/faq.html b/static/faq.html index c5f98d2..00b8342 100644 --- a/static/faq.html +++ b/static/faq.html @@ -37,7 +37,7 @@ <p>coming soon(tm).</p> <h4>Server Version</h4> - <p>v0.0.4</p> + <p>v0.0.5</p> </div> <div style="width: 500px; margin:0 auto; margin-top: 50px; text-align: center;"> <a href="/">[Home]</a><a href="/static/rules.html">[Rules]</a><a href="/static/faq.html">[FAQ]</a> |