You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I spelunking in my post database to debug an issue, and I found that the post_id is always null.
sqlite> select count(*) from posts;
119
sqlite> select count(*) from posts where post_id is null;
119
I'm on version v2.1.0 using node v20.11.0.
Looking in the code, it seems we're not capturing the response from createPost, which should have the post id on response.post_view.post.id.
I am planning a migration to v2.2.0 in the next couple of weeks, so I'm not certain a backport of the bugfix to the v2.1.x branch is worthwhile unless there are other users of the v2.1.x branch that are being affected by this issue.
The text was updated successfully, but these errors were encountered:
Update on this, its been taking a bit since I ran into issues with the bot library in the new version of the rss bot so ive been making my own bot library to move my bots to. Moving karma bot over first and if that goes well im moving the rss bot
I spelunking in my post database to debug an issue, and I found that the
post_id
is alwaysnull
.I'm on version v2.1.0 using node v20.11.0.
Looking in the code, it seems we're not capturing the response from
createPost
, which should have the post id onresponse.post_view.post.id
.I am planning a migration to v2.2.0 in the next couple of weeks, so I'm not certain a backport of the bugfix to the v2.1.x branch is worthwhile unless there are other users of the v2.1.x branch that are being affected by this issue.
The text was updated successfully, but these errors were encountered: