Fix boost to original audience not working on mobile (#11371)

lolsob-rspec
ThibG 2019-07-21 18:11:09 +02:00 committed by Eugen Rochko
parent 99b3dd5b00
commit ee7254e8eb
1 changed files with 1 additions and 1 deletions

View File

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