Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/Onyx.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,11 @@ function remove(key) {
function evictStorageAndRetry(error, onyxMethod, ...args) {
logInfo(`Handled error: ${error}`);

if (error && Str.startsWith(error.message, 'Failed to execute \'put\' on \'IDBObjectStore\'')) {
logAlert('Attempted to set invalid data set in Onyx. Please ensure all data is serializable.');
throw error;
}

// Find the first key that we can remove that has no subscribers in our blocklist
const keyForRemoval = _.find(recentlyAccessedKeys, key => !evictionBlocklist[key]);

Expand Down