nbot

A clone of the eBot by @deStrO fully based on node.js with build in Web Page - WIP
git clone git://archive.git.mtrnord.blog/MTRNord/nbot.git
Log | Files | Refs | README | LICENSE

commit 7e4e966e0298f52f248c88878407f2e624c3e70f
parent c8388ec42228949ebe067b441c801f3406acde58
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed, 30 Mar 2016 00:43:24 +0200

Please...

Diffstat:
Mbackend/pluginManager.js | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/backend/pluginManager.js b/backend/pluginManager.js @@ -31,11 +31,12 @@ var pluginManager = module.exports = {} */ pluginManager.getSourcemodVersions = function () { - var tags = github.repos.getTags({ + var tags; + github.repos.getTags({ user: "alliedmodders", repo: "sourcemod" }, function(err, res) { - return res + tags = res }) - return tags.toString(); + return tags }