[Glitch] Fix “open” link of media modal not closing modal

Port af08229ff4 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
master
Claire 3 years ago
parent b5e10d07ff
commit 08139d3cd7
  1. 6
      app/javascript/flavours/glitch/features/picture_in_picture/components/footer.js

@ -116,7 +116,11 @@ class Footer extends ImmutablePureComponent {
return;
}
const { status } = this.props;
const { status, onClose } = this.props;
if (onClose) {
onClose();
}
router.history.push(`/statuses/${status.get('id')}`);
}

Loading…
Cancel
Save