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

@ -604,7 +604,15 @@ function Packet(options) {
if(self.options.keepTearAndOrigin) { if(self.options.keepTearAndOrigin) {
msg.message += `${messageBodyData.originLine}\r\n`; msg.message += `${messageBodyData.originLine}\r\n`;
} }
} }
//
// 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) {