diff options
-rw-r--r-- | client.go | 2 | ||||
-rw-r--r-- | main.go | 2 | ||||
-rw-r--r-- | static/faq.html | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -142,7 +142,7 @@ func IndexGet(w http.ResponseWriter, r *http.Request, db *sql.DB) { data.BoardRemainer = make([]int, 0) } - data.InstanceIndex = GetCollectionFromReq("https://fchan.xyz/followers").Items + //data.InstanceIndex = GetCollectionFromReq("https://fchan.xyz/followers").Items data.NewsItems = getNewsFromDB(db, 3) data.Themes = &Themes @@ -2852,7 +2852,7 @@ func RouteImages(w http.ResponseWriter, media string) { resp, err := client.Do(req) - if err != nil || resp.StatusCode == 404 { + if err != nil || resp.StatusCode != 200 { fileBytes, err := ioutil.ReadFile("./static/notfound.png") CheckError(err, "could not get /static/notfound.png file bytes") diff --git a/static/faq.html b/static/faq.html index b9c6085..f4fb237 100644 --- a/static/faq.html +++ b/static/faq.html @@ -56,7 +56,7 @@ <p>Soon™.</p> <h4 id="version">What version is this FChannel instance?</h4> - <p>v0.0.14-dev</p> + <p>v0.0.14-release</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> |