mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-07 21:04:34 -05:00
fix URI exception
This commit is contained in:
@@ -59,9 +59,7 @@ fun applicationSetup() {
|
|||||||
try {
|
try {
|
||||||
val dataConfFile = File("${applicationDirs.dataRoot}/server.conf")
|
val dataConfFile = File("${applicationDirs.dataRoot}/server.conf")
|
||||||
if (!dataConfFile.exists()) {
|
if (!dataConfFile.exists()) {
|
||||||
val inpStream = File(
|
val inpStream = Main::class.java.getResourceAsStream("/server-reference.conf")
|
||||||
Main::class.java.getResource("/server-reference.conf").toURI()
|
|
||||||
).inputStream()
|
|
||||||
val outStream = dataConfFile.outputStream()
|
val outStream = dataConfFile.outputStream()
|
||||||
|
|
||||||
inpStream.copyTo(outStream)
|
inpStream.copyTo(outStream)
|
||||||
@@ -69,7 +67,9 @@ fun applicationSetup() {
|
|||||||
inpStream.close()
|
inpStream.close()
|
||||||
outStream.close()
|
outStream.close()
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {}
|
} catch (e: Exception) {
|
||||||
|
e.printStackTrace()
|
||||||
|
}
|
||||||
|
|
||||||
makeDataBaseTables()
|
makeDataBaseTables()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user