diff options
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | ws/ws.js | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index 60d0f18..5932024 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "uppity", - "version": "1.0.0", + "version": "1.1.0", "description": "This bot's sole purpose is to check the uptime of uwufier.", "main": "./bot.js", "scripts": { @@ -9,6 +9,7 @@ class WebSocket { this.client = client; this.app = express(); + this.app.use(allowCrossDomain); this.app.engine('hbs', hbs({ extname: 'hbs', defaultLayout: 'layout', |