mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-11-17 00:22:32 +01:00
Add null check for safety
This commit is contained in:
parent
564f92190c
commit
46e5cf23f8
@ -119,7 +119,7 @@ public class MangaDexClient {
|
||||
}
|
||||
gracefulCounter++;
|
||||
} else if (gracefulCounter > 0) {
|
||||
if (!isHandled.get() || gracefulCounter == 4) {
|
||||
if (!isHandled.get() || gracefulCounter == 4 || engine == null) {
|
||||
if (LOGGER.isInfoEnabled()) {
|
||||
if (!isHandled.get()) {
|
||||
LOGGER.info("No requests received, shutting down");
|
||||
@ -128,7 +128,9 @@ public class MangaDexClient {
|
||||
}
|
||||
}
|
||||
|
||||
if (engine != null) {
|
||||
stopServer();
|
||||
}
|
||||
if (gracefulAction != null) {
|
||||
gracefulAction.run();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user