diff options
author | Ev Bogue <ev@evbogue.com> | 2019-07-10 19:25:19 -0500 |
---|---|---|
committer | Ev Bogue <ev@evbogue.com> | 2019-07-10 19:25:19 -0500 |
commit | d9d0358b7552a6feb13a55f908ec359655997520 (patch) | |
tree | 8ac4e61ec3730c7855fd595b7e04c27e4b1b3f23 | |
parent | 97bfde9e23b703fd79550ef47b905853f50843f0 (diff) |
make sure replies show up when posted
-rw-r--r-- | composer.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/composer.js b/composer.js index 17b4df9..c7773d4 100644 --- a/composer.js +++ b/composer.js @@ -60,6 +60,7 @@ function composer (keys, reply, gotName, edit) { } if (reply) { messageDiv.removeChild(messageDiv.firstChild) + messageDiv.appendChild(render(msg, keys)) } else if (messageDiv.firstChild) { messageDiv.removeChild(messageDiv.firstChild) |