Fixed tokenized data-saver parser not working
This commit is contained in:
parent
81ed8a4550
commit
afe83a240b
|
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- [2020-06-15] Fixed tokenized data-saver parser not working by [@lflare].
|
||||||
|
|
||||||
## [1.0.0-RC16] - 2020-06-14
|
## [1.0.0-RC16] - 2020-06-14
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -31,7 +31,7 @@ fun getServer(cache: DiskLruCache, serverSettings: ServerSettings, clientSetting
|
||||||
tokenized = true
|
tokenized = true
|
||||||
),
|
),
|
||||||
"/{token}/data-saver/{chapterHash}/{fileName}" bind Method.GET to imageServer.handler(
|
"/{token}/data-saver/{chapterHash}/{fileName}" bind Method.GET to imageServer.handler(
|
||||||
dataSaver = false,
|
dataSaver = true,
|
||||||
tokenized = true
|
tokenized = true
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue