From 656b8c53d735487251b645718b3fc06aa773545f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 2 May 2016 10:23:27 +0200 Subject: [PATCH] Fixed wrong fakeAck call Thanks @markwal for spotting this. --- src/octoprint/static/js/app/viewmodels/terminal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/static/js/app/viewmodels/terminal.js b/src/octoprint/static/js/app/viewmodels/terminal.js index 9636e860..b524afcc 100644 --- a/src/octoprint/static/js/app/viewmodels/terminal.js +++ b/src/octoprint/static/js/app/viewmodels/terminal.js @@ -272,7 +272,7 @@ $(function() { }; self.fakeAck = function() { - OctoPrint.printer.fakeAck(); + OctoPrint.connection.fakeAck(); }; self.handleKeyDown = function(event) {