Last pull from master - new topics are null
-
@baris said:
Yeah nodebb 0.7.0 expects the mongodb dependency to be 2.0.0+ So if you do
npm ls mongodb
in the fresh install it will report it as 2.0.x.Thanks. Good to know.
-
Now that that is fixed, how to delete the dead thread?
http://community.kiddingaroundeurope.com/topic/null/testing-new-posts
-
You will have to remove it from the database manually.
db.objects.remove({_key: "topic:null"}); //remove object db.objects.remove({_key: "topics:recent", value: null}); //remove from recent db.objects.remove({_key: "cid:1:tids", value: null}); //remove from category db.objects.remove({_key: "uid:3:topics", value: null}); //remove from user
I picked the category id and user id from the api return at http://community.kiddingaroundeurope.com/api/recent
-
@baris Thanks! Looking good now.
Copyright © 2024 NodeBB | Contributors