summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Dinsmore <nathan@users.noreply.github.com>2015-06-17 17:26:56 -0400
committerNathan Dinsmore <nathan@users.noreply.github.com>2015-06-17 17:26:56 -0400
commit013e2740d853b660fbc48cda247b6fe711aecce9 (patch)
treec7df20384dd9bde210839194ac3b4fee44fe6b91
parent87c2503571bd7f5e753bc16a05bd198fc58d7d7c (diff)
downloadsnap-013e2740d853b660fbc48cda247b6fe711aecce9.tar.gz
snap-013e2740d853b660fbc48cda247b6fe711aecce9.zip
Fix missing initialization call in SnapSerializer()
-rw-r--r--store.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/store.js b/store.js
index 6f3bc23..a45c801 100644
--- a/store.js
+++ b/store.js
@@ -274,6 +274,7 @@ SnapSerializer.prototype.watcherLabels = {
// SnapSerializer instance creation:
function SnapSerializer() {
+ XML_Serializer.call(this);
this.init();
}