skapi-js 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/skapi.js +1 -1
- package/dist/skapi.js.map +1 -1
- package/dist/skapi.module.js +1 -1
- package/dist/skapi.module.js.map +1 -1
- package/js/main/skapi.js +1 -1
- package/js/methods/database.js +1 -1
- package/package.json +1 -1
package/js/main/skapi.js
CHANGED
package/js/methods/database.js
CHANGED
|
@@ -711,7 +711,7 @@ export async function postRecord(form, config) {
|
|
|
711
711
|
if (typeof i === 'string') {
|
|
712
712
|
arr.push(i);
|
|
713
713
|
}
|
|
714
|
-
else if (i.url && i.size && i.filename
|
|
714
|
+
else if (i.url && i.size && i.filename) {
|
|
715
715
|
arr.push(i.url);
|
|
716
716
|
}
|
|
717
717
|
else {
|
package/package.json
CHANGED