diff --git a/moment-timezone.js b/moment-timezone.js index af3228e7..b4eda761 100644 --- a/moment-timezone.js +++ b/moment-timezone.js @@ -451,15 +451,10 @@ var offset; if (mom._z) { offset = mom._z.offset(mom); - if (dontAdjustTime) { - mom._offset = offset; - mom._isUTC = true; - } else { - if (Math.abs(offset) < 16) { - offset = offset / 60; - } - mom.zone(offset); + if (Math.abs(offset) < 16) { + offset = offset / 60; } + mom.zone(offset, !dontAdjustTime); } };