Merge branch 'b' into 'develop'

Actually fix reblogs

See merge request soapbox-pub/soapbox-fe!951
This commit is contained in:
marcin mikołajczak 2022-01-03 22:46:17 +00:00
commit 73ff7aa437
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ const mapDispatchToProps = (dispatch, { intl }) => {
dispatch((_, getState) => {
const boostModal = getSettings(getState()).get('boostModal');
if (e.shiftKey || !boostModal) {
this.onModalReblog(status);
onModalReblog(status);
} else {
dispatch(openModal('BOOST', { status, onReblog: onModalReblog }));
}