disable cache usage for form results

This commit is contained in:
ansuz 2021-07-09 16:43:17 +05:30
parent cf224bf993
commit 90b6787fa8
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ define([
var checkCheckpoints = function (array) {
if (!Array.isArray(array)) { return; }
// Keep the last 100 messages
if (array.length > 100) {
if (array.length > 100) { // XXX
array.splice(0, array.length - 100);
}
// Remove every message before the first checkpoint

View File

@ -176,7 +176,7 @@ define([
validateKey: keys.secondaryValidateKey,
owners: [myKeys.edPublic],
crypto: crypto,
Cache: Utils.Cache
//Cache: Utils.Cache // XXX
};
var results = {};
config.onError = function (info) {