Unexpected flags showing up... False flags!

Love hearing that. We’re on the edge of our seat.

1 „Gefällt mir“

Tests have passed, fix rolled out to all affected sites. Sorry about this!

1 „Gefällt mir“

thanks @jomaxro

to clarify, the original problem is solved, and hearts are no longer flags? We can turn them back on?

thanks for your help

2 „Gefällt mir“

That is correct. A change deployed yesterday updated the way we determine when to hide flagged posts, and in doing so introduced this bug where likes could cause posts to be hidden. That bug has been fixed.

3 „Gefällt mir“

Seth, I tested on your site and already enabled the Like button again and disabled the global warning.

2 „Gefällt mir“

thanks @dax

if it was always that easy to get rid of global warming, I’d be a lot more optimistic about the future.

perhaps you and the team could work on that next.

:sun_behind_large_cloud:

6 „Gefällt mir“

What’s the best way for to scan the sites for posts that were hidden by this bug and unhide them?

With @codinghorror , who knows… we could even do it :muscle: :man_superhero: :woman_superhero:

:smiley:

This data explorer query should reveal all hidden (but not deleted) posts:

SELECT id, user_id, topic_id, post_number
FROM posts p
WHERE p.hidden = true AND p.deleted_at IS NULL

From there you can unhide the posts found.

1 „Gefällt mir“

Thanks. I just set that up and we’ve got 400 posts to clean up. Is there a way for you to do it programmatically?

Perhaps you can unhide all in one fell swoop?

Certainly. You want us to unhide all hidden posts on the 3 sites listed above?

Yes please.

… and now extra chars to hit min post

1 „Gefällt mir“

Let us know when the posts are un-hidden, and we’ll be able to wrap this up.

1 „Gefällt mir“

You’re all set. All posts unhidden.

1 „Gefällt mir“

Thank you so much for untangling this bug and helping us clean up after.

2 „Gefällt mir“

This topic was automatically closed after 3 days. New replies are no longer allowed.