Remove empty spaces from SaveProviderHandler

This commit is contained in:
Qstick 2022-12-12 21:08:04 -06:00
parent f538feb798
commit 0deb9de331
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ function createSaveProviderHandler(section, url, options = {}, removeStale = fal
request.done((data) => {
lastSaveData = null;
if (!Array.isArray(data)) {
data = [data];
}