1
0
Fork 1
mirror of https://gitlab.com/mangadex-pub/mangadex_at_home.git synced 2024-01-19 02:48:37 +00:00

Slight typo.

This commit is contained in:
Amos Ng 2020-06-12 01:35:12 +08:00
parent da47b86d97
commit a1130d204c
No known key found for this signature in database
GPG key ID: 89086414F634D123

View file

@ -186,7 +186,6 @@ fun getServer(cache: DiskLruCache, serverSettings: ServerSettings, clientSetting
editor.abort()
}
}
mdResponse.close()
respondWithImage(tee, contentLength, contentType, lastModified)
} else {
editor?.abort()
@ -194,9 +193,9 @@ fun getServer(cache: DiskLruCache, serverSettings: ServerSettings, clientSetting
if (LOGGER.isTraceEnabled) {
LOGGER.trace("Request for $sanitizedUri is being served")
}
mdResponse.close()
respondWithImage(mdResponse.body.stream, contentLength, contentType, lastModified)
}
mdResponse.close()
}
}
}