Revert source id to long

This commit is contained in:
Syer10
2021-04-03 16:57:03 -04:00
parent c0df7d314b
commit a211a4143b
3 changed files with 4 additions and 4 deletions
@@ -58,7 +58,7 @@ class TestExtensions {
}
}
}
sources = getSourceList().map { getHttpSource(it.id) }
sources = getSourceList().map { getHttpSource(it.id.toLong()) }
}
setLoggingEnabled(true)
File("tmp/TestDesk/sources.txt").writeText(sources.joinToString("\n") { "${it.name} - ${it.lang.toUpperCase()} - ${it.id}" })