From 8b905c2bdae20852e559f28581e05fcd4738ac2a Mon Sep 17 00:00:00 2001 From: haad Date: Tue, 9 Feb 2016 10:32:11 +0100 Subject: [PATCH] Add 'from' field to MetaInfo --- src/MetaInfo.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/MetaInfo.js b/src/MetaInfo.js index f68f953..b460e7c 100644 --- a/src/MetaInfo.js +++ b/src/MetaInfo.js @@ -1,9 +1,10 @@ 'use strict'; class MetaInfo { - constructor(type, size, ts) { + constructor(type, size, from, ts) { this.type = type; this.size = size; + this.from = from; this.ts = ts; } }