0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Use moment-timezone when using .tz() (#7653)

refs #7449, refs #7514, refs #7643

- We've had a couple of issues raised, and a few people in #help all report the same error:
> Cannot read property 'zone' of undefined
When starting Ghost.

I'm not sure why this seems to work sometimes, and not others, however it would seem that we
should require moment-timezone anywhere we want to use timezone features.

This PR fixes the LOC shown in #7449 as the problem line + I searched for any other potential problems
This commit is contained in:
Hannah Wolfe 2016-10-31 13:44:24 +00:00 committed by Katharina Irrgang
parent dfa073c29e
commit 9a7ebeef1c
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
var schema = require('../schema').tables,
_ = require('lodash'),
validator = require('validator'),
moment = require('moment'),
moment = require('moment-timezone'),
assert = require('assert'),
Promise = require('bluebird'),
errors = require('../../errors'),

View file

@ -3,7 +3,7 @@
//
// Formats a date using moment-timezone.js. Formats published_at by default but will also take a date as a parameter
var moment = require('moment-timezone'),
var moment = require('moment-timezone'),
date,
timezone;