Actually no, that’s not correct - the first image was safely transferred. So this post just doesn’t seem to have had its URLs correctly rewritten.
I’ve fixed this specific post, and will try to find and fix other problem posts automatically, but for future ref the way to fix this is:
- In the browser: edit and re-save the post (if you have that ability)
- At the discourse rails console, you find and “rebake” the post (which just means re-convert it from forum markup into HTML):
# if it's the first post in a topic, e.g.
# https://discourse.southlondonmakerspace.org/t/planer-thicknesser-wadkin-bursgreen/2026
> Post.find_by(topic_id: 2026, post_number: 1).rebake!
# if it's a reply, e.g.
# https://discourse.southlondonmakerspace.org/t/discourse-uploads-migation/35190/5
> Post.find_by(topic_id: 35190, post_number: 5).rebake!
Edit: as a precaution I’ve rebaked every post in which there was a lightbox, which was around 6k of them.