From 185d574a1cdb69f1f7c24f6e80e03500013453c2 Mon Sep 17 00:00:00 2001 From: Patrik Juvonen Date: Thu, 11 Jan 2018 16:24:35 +0200 Subject: [PATCH] Comment typo fix for the wittrs object store Simple typo, the object store is named 'wittrs', not 'wittr'. --- public/js/main/IndexController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/main/IndexController.js b/public/js/main/IndexController.js index f8d10911..16dfb774 100644 --- a/public/js/main/IndexController.js +++ b/public/js/main/IndexController.js @@ -159,7 +159,7 @@ IndexController.prototype._cleanImageCache = function() { return this._dbPromise.then(function(db) { if (!db) return; - // TODO: open the 'wittr' object store, get all the messages, + // TODO: open the 'wittrs' object store, get all the messages, // gather all the photo urls. // // Open the 'wittr-content-imgs' cache, and delete any entry @@ -191,4 +191,4 @@ IndexController.prototype._onSocketMessage = function(data) { }); this._postsView.addPosts(messages); -}; \ No newline at end of file +};