1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Fixing bug.

This commit is contained in:
mike12345567 2021-05-28 12:05:03 +01:00
parent 6416d7f197
commit 544f6a26ef

View file

@ -174,7 +174,7 @@ exports.inputProcessing = (user = {}, table, row) => {
const field = table.schema[key]
// cleanse fields that aren't in the schema
if (!field) {
if (copiedTable.indexOf(key) === -1) {
if (dontCleanseKeys.indexOf(key) === -1) {
delete clonedRow[key]
}
continue