From 006d99e19afc0c13c05d02c00036f8cfffa43873 Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 23 Jan 2018 12:09:54 +0100 Subject: [PATCH] Fix undefined friends --- www/common/outer/async-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index 82cbee00d..68c217108 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -341,7 +341,7 @@ define([ // "priv" is not shared with other users but is needed by the apps priv: { edPublic: store.proxy.edPublic, - friends: store.proxy.friends, + friends: store.proxy.friends || {}, settings: store.proxy.settings, thumbnails: !Util.find(store.proxy, ['settings', 'general', 'disableThumbnails']) }