diff options
author | FChannel <> | 2022-06-19 12:53:24 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:24 -0700 |
commit | 799569934fa7b2b0cfd9c981c67f9c63506469d1 (patch) | |
tree | dff2bf72d7ee39edc3612c90054b72e28893a844 /client.go | |
parent | ccdbe6fda1c783be80e74fcb97a10bef8d0de24d (diff) |
last time with version conflicts on merge.....
Diffstat (limited to 'client.go')
-rw-r--r-- | client.go | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -146,7 +146,12 @@ func IndexGet(w http.ResponseWriter, r *http.Request, db *sql.DB) { data.BoardRemainer = make([]int, 0) } - //data.InstanceIndex = GetCollectionFromReq("https://fchan.xyz/followers").Items + col := GetCollectionFromReq("https://fchan.xyz/followers") + + if len(col.Items) > 0 { + data.InstanceIndex = col.Items + } + data.NewsItems = getNewsFromDB(db, 3) data.Themes = &Themes |