mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-01-19 02:48:37 +00:00
Merge branch 'parse-url-compromised-ping' into 'master'
Added logging of `url` and `compromised` parameters from `/ping` See merge request mangadex/mangadex_at_home!28
This commit is contained in:
commit
81ed8a4550
|
@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
### Added
|
||||
- [2020-06-15] Added logging of backend assigned URL to logs by [@lflare].
|
||||
- [2020-06-15] Added logging of `compromised` softban to logs by [@lflare].
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
@ -10,11 +10,15 @@ public final class ServerSettings {
|
|||
private final TlsCert tls;
|
||||
@SerializedName("latest_build")
|
||||
private final int latestBuild;
|
||||
private final String url;
|
||||
private final boolean compromised;
|
||||
|
||||
public ServerSettings(String imageServer, TlsCert tls, int latestBuild) {
|
||||
public ServerSettings(String imageServer, TlsCert tls, int latestBuild, String url, boolean compromised) {
|
||||
this.imageServer = Objects.requireNonNull(imageServer);
|
||||
this.tls = tls;
|
||||
this.latestBuild = latestBuild;
|
||||
this.url = url;
|
||||
this.compromised = compromised;
|
||||
}
|
||||
|
||||
public String getImageServer() {
|
||||
|
@ -32,7 +36,7 @@ public final class ServerSettings {
|
|||
@Override
|
||||
public String toString() {
|
||||
return "ServerSettings{" + "imageServer='" + imageServer + '\'' + ", tls=" + tls + ", latestBuild="
|
||||
+ latestBuild + '}';
|
||||
+ latestBuild + ", url='" + url + "', compromised=" + compromised + '}';
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue