Parcourir la source

Forgot to correctly propagate format change

Brendan Abolivier il y a 7 ans
Parent
révision
9143c0577a
Signé par: Brendan Abolivier <contact@brendanabolivier.com> ID de la clé GPG: 8EF1500759F70623
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2
    2
      server.js

+ 2
- 2
server.js Voir le fichier

@@ -150,8 +150,8 @@ app.get('/fields', function(req, res, next) {
150 150
 	// Response will be JSON
151 151
 	res.header('Access-Control-Allow-Headers', 'Content-Type');
152 152
 
153
-	// Send an array anyway, its length will determine if we need to display any
154
-	let customFields = settings.customFields || [];
153
+	// Send an object anyway, its size will determine if we need to display any
154
+	let customFields = settings.customFields || {};
155 155
 	
156 156
 	// Send custom fields data
157 157
 	res.status(200).send(customFields);