fix duplicate instances between known and top

This commit is contained in:
codl 2019-03-15 21:23:20 +01:00
parent b4c332190e
commit bd795157c7
No known key found for this signature in database
GPG Key ID: 6CD7C8891ED1233A
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ import {known_load, known_save} from './known_instances.js';
for(let instance of top_instances){
let found = false;
for(let k of known){
if(k['instance'] == instance){
if(k['instance'] == instance['instance']){
found = true;
break;
}