mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-13 19:22:05 +00:00
Fix import script
This commit is contained in:
parent
341d17c7b9
commit
4f0094652b
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ function copyChannelTables(name, cb) {
|
|||
rows = rows.map(function (r) {
|
||||
if (r.rank === 10) {
|
||||
r.rank = 5;
|
||||
} else if (r.rank >= 3 && r.rank < 10) {
|
||||
} else if (r.rank > 3 && r.rank < 10) {
|
||||
r.rank = 4;
|
||||
}
|
||||
return [r.name, r.rank];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue