mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 14:29:29 +01:00
dont compare if lfm is ==
This commit is contained in:
parent
13a2c465ae
commit
ba8a603e26
@ -234,7 +234,7 @@ var lastfm = function(dbot) {
|
|||||||
async.eachSeries(profiles, function(p1, next) {
|
async.eachSeries(profiles, function(p1, next) {
|
||||||
scores[p1.id] = {};
|
scores[p1.id] = {};
|
||||||
async.eachSeries(profiles, function(p2, subnext) {
|
async.eachSeries(profiles, function(p2, subnext) {
|
||||||
if(p1.id == p2.id || _.has(scores, p2.id) && _.has(scores[p2.id], p1.id)) {
|
if(p1.id == p2.id || p1.profile.lastfm == p2.profile.lastfm || _.has(scores, p2.id) && _.has(scores[p2.id], p1.id)) {
|
||||||
subnext();
|
subnext();
|
||||||
} else {
|
} else {
|
||||||
console.log('comparing ' + p1.profile.lastfm + ' and ' + p2.profile.lastfm);
|
console.log('comparing ' + p1.profile.lastfm + ' and ' + p2.profile.lastfm);
|
||||||
|
Loading…
Reference in New Issue
Block a user