Fix cache and storage issues in share and filepicker iframes

This commit is contained in:
yflory
2020-01-13 17:06:49 +01:00
parent 73af078e4a
commit d02092eb76
3 changed files with 19 additions and 4 deletions

View File

@@ -58,7 +58,7 @@ define([
// Remove the listener once we've received the READY message
window.removeEventListener('message', whenReady);
// Answer with the requested data
postMsg(JSON.stringify({ txid: data.txid, language: Cryptpad.getLanguage() }));
postMsg(JSON.stringify({ txid: data.txid, language: Cryptpad.getLanguage(), localStore: window.localStore, cache: window.cpCache }));
// Then start the channel
window.addEventListener('message', function (msg) {