summaryrefslogtreecommitdiff
path: root/lib/history.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lib/history.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/history.js b/lib/history.js
index 63be4521..9c389bfa 100644
--- a/lib/history.js
+++ b/lib/history.js
@@ -47,7 +47,11 @@ function getHistory (userid, callback) {
}
} catch (err) {
// most error here comes from LZString, ignore
- logger.error(err)
+ if (err.message === 'Cannot read property \'charAt\' of undefined') {
+ logger.warning('Looks like we can not decode "' + history[i].id + '" with LZString. Can be ignored.')
+ } else {
+ logger.error(err)
+ }
}
}
history = parseHistoryToObject(history)