From a0e1cb47ffc048f479d1e34ed4d8311fae4d0625 Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Thu, 12 Feb 2015 12:59:34 +0100 Subject: [PATCH] fix ltx includes in examples --- examples/server-and-client.js | 2 +- examples/server-and-component.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/server-and-client.js b/examples/server-and-client.js index 0489e3d..c4fed32 100644 --- a/examples/server-and-client.js +++ b/examples/server-and-client.js @@ -4,7 +4,7 @@ var xmpp = require('../index') , c2s = null , debug = require('debug')('server-and-client') , Client = require('node-xmpp-client') - , ltx = require('ltx') + , ltx = require('node-xmpp-core').ltx var startServer = function(done) { // Sets up the server. diff --git a/examples/server-and-component.js b/examples/server-and-component.js index 67c994c..ce133a4 100644 --- a/examples/server-and-component.js +++ b/examples/server-and-component.js @@ -4,7 +4,7 @@ var xmpp = require('../index') , componentSrv = null , debug = require('debug')('server-and-component') , Component = require('node-xmpp-component') - , ltx = require('node-xmpp-core/node_modules/ltx') + , ltx = require('node-xmpp-core').ltx var startServer = function(done) { // Sets up the server.