|
@@ -183,7 +183,6 @@ module.exports = {
|
|
getStation: function(stationId, cb) {
|
|
getStation: function(stationId, cb) {
|
|
let _this = this;
|
|
let _this = this;
|
|
async.waterfall([
|
|
async.waterfall([
|
|
-
|
|
|
|
(next) => {
|
|
(next) => {
|
|
cache.hget('stations', stationId, next);
|
|
cache.hget('stations', stationId, next);
|
|
},
|
|
},
|
|
@@ -196,7 +195,7 @@ module.exports = {
|
|
(station, next) => {
|
|
(station, next) => {
|
|
if (station) {
|
|
if (station) {
|
|
if (station.type === 'official') {
|
|
if (station.type === 'official') {
|
|
- _this.calculateOfficialPlaylistList(station._id, station.playlist, ()=>{});
|
|
|
|
|
|
+ _this.calculateOfficialPlaylistList(station._id, station.playlist, () => {});
|
|
}
|
|
}
|
|
station = cache.schemas.station(station);
|
|
station = cache.schemas.station(station);
|
|
cache.hset('stations', stationId, station);
|
|
cache.hset('stations', stationId, station);
|
|
@@ -216,7 +215,7 @@ module.exports = {
|
|
async.waterfall([
|
|
async.waterfall([
|
|
|
|
|
|
(next) => {
|
|
(next) => {
|
|
- db.models.station.findOne({name: stationName}, next);
|
|
|
|
|
|
+ db.models.station.findOne({ name: stationName }, next);
|
|
},
|
|
},
|
|
|
|
|
|
(station, next) => {
|
|
(station, next) => {
|