diff options
| author | Roman / Linnea Gräf <roman.graef@gmail.com> | 2023-02-07 06:25:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-07 16:25:16 +1100 |
| commit | 9ac80842dd3e280bd1468c7261d30c21968b0da1 (patch) | |
| tree | 2bd972c0c622d91c6a83bbe27aa5c6afcb53f74d /src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java | |
| parent | b9f9917306b3b522ef83f22faef30977ac73fd52 (diff) | |
| download | notenoughupdates-9ac80842dd3e280bd1468c7261d30c21968b0da1.tar.gz notenoughupdates-9ac80842dd3e280bd1468c7261d30c21968b0da1.tar.bz2 notenoughupdates-9ac80842dd3e280bd1468c7261d30c21968b0da1.zip | |
ApiUtil: Add developer only user agent override (#590)
Co-authored-by: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java index 371d657e..a289ca51 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java @@ -438,6 +438,8 @@ public class NEUConfig extends Config { @Expose public int compareMode = 0; @Expose + public String customUserAgent = null; + @Expose public int sortMode = 0; @Expose public ArrayList<Boolean> compareAscending = Lists.newArrayList(true, true, true); |
