From 8eec7ec7c8996f99380572cd84e244bc7b2bef9e Mon Sep 17 00:00:00 2001 From: yflory Date: Fri, 10 Feb 2017 11:00:34 +0100 Subject: [PATCH] Fix typo --- www/common/cryptpad-common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/cryptpad-common.js b/www/common/cryptpad-common.js index bc41fc4e5..443d1222d 100644 --- a/www/common/cryptpad-common.js +++ b/www/common/cryptpad-common.js @@ -369,7 +369,7 @@ define([ require(['/customize/store.js'], function(Legacy) { Legacy.ready(function (err, legacy) { if (err) { cb(err, null); return; } - Legacy.get(storageKey, function (err2, recentPads) { + legacy.get(storageKey, function (err2, recentPads) { if (err2) { cb(err2, null); return; } if (isArray(recentPads)) { cb(void 0, migrateRecentPads(recentPads));