From fae71e44f6986a0f5ecec391c36e4fa321e5c1e3 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 20 Jun 2015 13:09:11 -0700 Subject: [PATCH] GUAC-1172: Fix reference to enqueueBodyCallback() - it's "enqueue", not "queue". --- guacamole-common-js/src/main/webapp/modules/Object.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Object.js b/guacamole-common-js/src/main/webapp/modules/Object.js index 07a95beea..4fe650037 100644 --- a/guacamole-common-js/src/main/webapp/modules/Object.js +++ b/guacamole-common-js/src/main/webapp/modules/Object.js @@ -167,7 +167,7 @@ Guacamole.Object = function(client, index) { // Queue body callback if provided if (bodyCallback) - queueBodyCallback(name, bodyCallback); + enqueueBodyCallback(name, bodyCallback); // Send request for input stream client.requestObjectInputStream(guacObject.index, name);