mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-12 18:43:40 +03:00
[FIX] Фикс NPE в AuthLimiter
This commit is contained in:
parent
0268a48fe6
commit
3a6e6f32d8
1 changed files with 2 additions and 2 deletions
|
@ -82,8 +82,8 @@ public String toString() {
|
||||||
public int rateLimitMilis;
|
public int rateLimitMilis;
|
||||||
public String message;
|
public String message;
|
||||||
|
|
||||||
public transient HashMap<String, AuthEntry> map;
|
public transient HashMap<String, AuthEntry> map = new HashMap<>();
|
||||||
public List<String> excludeIps;
|
public List<String> excludeIps = new ArrayList<>();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void garbageCollection() {
|
public void garbageCollection() {
|
||||||
|
|
Loading…
Reference in a new issue