From 037e8b6fc5a6c17c68f8711963ec9acdc1256171 Mon Sep 17 00:00:00 2001 From: hristoterezov Date: Thu, 10 Dec 2015 17:10:27 +1100 Subject: [PATCH] Fixes jshint errors --- modules/xmpp/recording.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/xmpp/recording.js b/modules/xmpp/recording.js index 4f7edb2b0..b1d441727 100644 --- a/modules/xmpp/recording.js +++ b/modules/xmpp/recording.js @@ -89,13 +89,13 @@ Recording.prototype.isSupported = function () { */ Recording.prototype.getState = function () { return this.state; -} +}; /** * Returns the url of the recorded video. */ Recording.prototype.getURL = function () { return this.url; -} +}; module.exports = Recording;