diff --git a/index.js b/index.js index 869f049a..45090d45 100644 --- a/index.js +++ b/index.js @@ -259,7 +259,10 @@ const createClient = (profile, userAgent, opt = {}) => { } const ctx = {profile, opt, common, res} - return profile.parseJourney(ctx, res.outConL[0]) + return { + realtimeDataFrom: res.planrtTS ? parseInt(res.planrtTS) : null, + ...profile.parseJourney(ctx, res.outConL[0]) + } }) }