Skip to content

Commit

Permalink
Fixing module being broken after magic mirror upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
buxxi committed Dec 30, 2019
1 parent 7d10ecc commit 32d3e03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node_helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const express = require("express");
module.exports = NodeHelper.create({
start: function() {
console.log("Starting node helper for: " + this.name);
this.expressApp.use(express.urlencoded());
this.expressApp.use(express.urlencoded({ extended: true }));
this.expressApp.post('/indoor-temperature', this._onTemperatureValueReceived.bind(this));

this.temperature = undefined;
Expand Down

0 comments on commit 32d3e03

Please sign in to comment.