I am using nodebb-plugin-composer-default 4.3.2 and NodeBB v1.4.0.
The problem is present on Lavender and other themes. Looks like it is not related to the theme.
Not sure why, but sometimes when I'm trying to post a new topic, it does this. I usually just have to discard the topic and redo it and it works.
Probably same issue as this https://github.com/NodeBB/NodeBB/issues/1810, haven't found proper repro steps yet.
One of my members including me just had the same problem but it happens every blue moon. It's totally weird.
You can add 2 console.logs
to pinpoint which part of the code is sending the error.
Before this line add console.log('title too short - server check', title, meta.config.minimumTitleLength);
and before this line add console.log('title too short - client check', titleEl.val(), config.minimumTitleLength);
If it happens again check the browser/server logs for the output.
Definitely will do this and monitor this. Thanks!
Saw this: https://github.com/NodeBB/NodeBB/commit/df0a5e780ae22fda7acf64d25764380f39bad1e0
Will see if it helps too.
That shouldn't effect new topics/posts but it's good to have, before that it was possible to edit the main post and go above the maximum title length.
Ouch, so it was bug nonetheless. Thanks @baris !