Adjust to TZUTC kludge

This commit is contained in:
Bryan Ashby 2016-04-11 20:44:08 -06:00
parent 8f988f5dc1
commit 54c79dee05
1 changed files with 9 additions and 1 deletions

View File

@ -606,6 +606,14 @@ function Packet(options) {
} }
} }
//
// If we have a UTC offset kludge (e.g. TZUTC) then update
// modDateTime with it
//
if(_.isString(msg.meta.FtnKludge.TZUTC) && msg.meta.FtnKludge.TZUTC.length > 0) {
msg.modDateTime = msg.modTimestamp.utcOffset(msg.meta.FtnKludge.TZUTC);
}
const nextBuf = packetBuffer.slice(read); const nextBuf = packetBuffer.slice(read);
if(nextBuf.length > 0) { if(nextBuf.length > 0) {
let next = function(e) { let next = function(e) {