Skip to content

Commit

Permalink
Fixed date display
Browse files Browse the repository at this point in the history
  • Loading branch information
fishdev committed Jan 28, 2019
1 parent 1228a3a commit 1d2ef26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ app.engine('hbs', hbs({
layoutsDir: path.join(__dirname, '/views/layouts/'),
partialsDir: path.join(__dirname, '/views/partials/'),
helpers: {
trim: str => str.toString().slice(0, str.toString().indexOf(' GMT-')),
trim: str => str.toString().slice(0, str.toString().indexOf(' (UTC')),
round: n => Math.round(n * 100) / 100,
freqreduce: (arr) => {
const freqs = {};
Expand Down
2 changes: 1 addition & 1 deletion server/util/version.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const axios = require('axios');

const current = 'v1.2.2';
const current = 'v1.2.3';
let latest;

function check() {
Expand Down

0 comments on commit 1d2ef26

Please sign in to comment.