From 2381dd0e39358cbe798fc446b56ccd241f0d19c9 Mon Sep 17 00:00:00 2001 From: yflory Date: Wed, 4 Apr 2018 17:24:26 +0200 Subject: [PATCH] Remove owned profile and owned todo in automatic account deletion --- www/common/outer/async-store.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index 3063517aa..e7cc7be9f 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -436,6 +436,12 @@ define([ list.push(Hash.hrefToHexChannelId(data.href)); } }); + if (store.proxy.todo) { + list.push(Hash.hrefToHexChannelId('/todo/#' + store.proxy.todo)); + } + if (store.proxy.profile && store.proxy.profile.edit) { + list.push(Hash.hrefToHexChannelId('/profile/#' + store.proxy.profile.edit)); + } return list; }; var removeOwnedPads = function (waitFor) {