diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c7e17d..e8f3403 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,18 +14,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed ### Fixed +- [2021-03-11] Fixed Access-Control-Expose-Headers typo [@lflare]. ### Security ## [2.0.0-rc14] - 2021-03-02 ### Changed -- [2020-02-10] Fix Prometheus to 2.24.1 and Grafana to 7.4.0 [@_tde9]. -- [2020-02-10] Update and rearrange the embedded dashboard with the new Timeseries panel from Grafana 7.4 [@_tde9]. -- [2020-02-10] Update sample dashboard screenshot thanks to DLMSweet :smile: [@_tde9]. -- [2020-02-25] Use HTTP/2 to download when possible [@carbotaniuman]. +- [2021-02-10] Fix Prometheus to 2.24.1 and Grafana to 7.4.0 [@_tde9]. +- [2021-02-10] Update and rearrange the embedded dashboard with the new Timeseries panel from Grafana 7.4 [@_tde9]. +- [2021-02-10] Update sample dashboard screenshot thanks to DLMSweet :smile: [@_tde9]. +- [2021-02-25] Use HTTP/2 to download when possible [@carbotaniuman]. ### Fixed -- [2020-02-21] Fix pipeline [@_tde9]. +- [2021-02-21] Fix pipeline [@_tde9]. ## [2.0.0-rc13] - 2021-02-19 ### Changed diff --git a/src/main/kotlin/mdnet/server/ImageHandler.kt b/src/main/kotlin/mdnet/server/ImageHandler.kt index 208e60c..f8267df 100644 --- a/src/main/kotlin/mdnet/server/ImageHandler.kt +++ b/src/main/kotlin/mdnet/server/ImageHandler.kt @@ -182,7 +182,7 @@ class ImageServer( { request: Request -> val response = next(request) response.header("access-control-allow-origin", "https://mangadex.org") - .header("access-control-allow-headers", "*") + .header("access-control-expose-headers", "*") .header("access-control-allow-methods", "GET") .header("timing-allow-origin", "https://mangadex.org") }