Преглед на файлове

Forgot to correctly propagate format change

Brendan Abolivier преди 7 години
родител
ревизия
9143c0577a
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2
    2
      server.js

+ 2
- 2
server.js Целия файл

@@ -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);