In the new versions of quickFilters, backed up filters aren't stored in the correct format which will lead to difficulties when trying to restore them.
This is a regression from the switchover from the deprecated OS.File to IOUtils. I should be using writeUTF8 instead of writeJSON on an already formatted, prettified json string. Using writeJSON is less useful because it has no parameter to make the file better readable, so I rather keep using JSON.stringify(entity, null, ' '); followed by IOUtils.writeUTF8()
In the new versions of quickFilters, backed up filters aren't stored in the correct format which will lead to difficulties when trying to restore them.
This is a regression from the switchover from the deprecated
OS.FiletoIOUtils. I should be usingwriteUTF8instead ofwriteJSONon an already formatted, prettified json string. Using writeJSON is less useful because it has no parameter to make the file better readable, so I rather keep usingJSON.stringify(entity, null, ' ');followed byIOUtils.writeUTF8()