]> cat aescling's git repositories - mastodon.git/commitdiff
Fixed unexpected error
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 5 Jan 2017 13:23:59 +0000 (14:23 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Thu, 5 Jan 2017 13:23:59 +0000 (14:23 +0100)
app/assets/javascripts/components/features/compose/components/compose_form.jsx

index 5a76b177b689db7c1b9c048d4289fe96eed3e178..078bfbdc62b7d476058ab45498160b1672a06ccc 100644 (file)
@@ -85,12 +85,12 @@ const ComposeForm = React.createClass({
   },
 
   componentDidUpdate (prevProps) {
-    if ((!prevProps.in_reply_to && this.props.in_reply_to) || prevProps.in_reply_to.get('id') !== this.props.in_reply_to.get('id')) {
+    if ((prevProps.in_reply_to === null && this.props.in_reply_to !== null) || (prevProps.in_reply_to !== null && this.props.in_reply_to !== null && prevProps.in_reply_to.get('id') !== this.props.in_reply_to.get('id'))) {
       // If replying to zero or one users, places the cursor at the end of the textbox.
       // If replying to more than one user, selects any usernames past the first;
       // this provides a convenient shortcut to drop everyone else from the conversation.
       const selectionStart = this.props.text.search(/\s/) + 1;
-      const selectionEnd = this.props.text.length;
+      const selectionEnd   = this.props.text.length;
 
       this.autosuggestTextarea.textarea.setSelectionRange(selectionStart, selectionEnd);
       this.autosuggestTextarea.textarea.focus();