Skip to content

Commit 2a30777

Browse files
author
Chris K
committed
Fix for DFL-2517, REPL throws when autocomplete comes back from host while console is not visible.
1 parent 9469c9a commit 2a30777

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/repl/repl_view.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,9 @@ cls.ReplView = function(id, name, container_class, html, default_handler) {
521521

522522
this._handle_completer = function(props)
523523
{
524+
if (!(this._linelist && this._textarea))
525+
return;
526+
524527
if (props)
525528
{
526529
var localpart = props.identifier;

0 commit comments

Comments
 (0)