VRFS-2426 one more try at latency badge on hover bubble

This commit is contained in:
Brian Smith 2014-11-06 20:43:47 -05:00
parent 415805c4eb
commit f9d23f77fa
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@
if (response.internet_score && response.internet_score.length > 0) {
if (response.internet_score[0].score && !isNaN(response.internet_score[0].score)) {
var internetScore = parseInt(response.internet_score[0].score);
fullScore = (response.internet_score + calculateAudioLatency(response.my_audio_latency) + calculateAudioLatency(response.last_jam_audio_latency)) / 2;
fullScore = (internetScore + calculateAudioLatency(response.my_audio_latency) + calculateAudioLatency(response.last_jam_audio_latency)) / 2;
}
}