|
@@ -738,7 +738,7 @@ class App {
|
|
|
|
|
|
|
|
|
if (file.includes('_json')) {
|
|
|
- source = (typeof JSON.parse(source) == 'object') ? source : JSON.stringify(source, null, '\t')
|
|
|
+ source = (typeof JSON.parse(source) == 'object') ? JSON.stringify(JSON.parse(source), null, '\t') : source
|
|
|
|
|
|
}
|
|
|
|