Browse Source

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

pull/4/head
ThibG 4 years ago
committed by Eugen Rochko
parent
commit
59fd622adc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/containers/status_container.js

+ 1
- 1
app/javascript/mastodon/containers/status_container.js 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 }));

Loading…
Cancel
Save