diff options
Diffstat (limited to 'server/models/pods.js')
-rw-r--r-- | server/models/pods.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/pods.js b/server/models/pods.js index 4e21001f5..04cc2d6fc 100644 --- a/server/models/pods.js +++ b/server/models/pods.js | |||
@@ -58,13 +58,13 @@ function incrementScores (ids, value, callback) { | |||
58 | } | 58 | } |
59 | 59 | ||
60 | function list (callback) { | 60 | function list (callback) { |
61 | PodsDB.find(function (err, pods_list) { | 61 | PodsDB.find(function (err, podsList) { |
62 | if (err) { | 62 | if (err) { |
63 | logger.error('Cannot get the list of the pods.') | 63 | logger.error('Cannot get the list of the pods.') |
64 | return callback(err) | 64 | return callback(err) |
65 | } | 65 | } |
66 | 66 | ||
67 | return callback(null, pods_list) | 67 | return callback(null, podsList) |
68 | }) | 68 | }) |
69 | } | 69 | } |
70 | 70 | ||