You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems a bug in js code, shortest_domain finish with largest one.
You would need to change sign line 322 of index.js to fix it.
if(shortest_domain.length < domains[d].length){
Should become :
if(shortest_domain.length > domains[d].length){
There seems a bug in js code, shortest_domain finish with largest one.
You would need to change sign line 322 of index.js to fix it.
if(shortest_domain.length < domains[d].length){
Should become :
if(shortest_domain.length > domains[d].length){