mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-06 13:56:34 +02:00
Fixing bug in AbstractRipper
This commit is contained in:
@@ -244,7 +244,7 @@ public abstract class AbstractRipper
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void sendUpdate(STATUS status, Object message) {
|
public void sendUpdate(STATUS status, Object message) {
|
||||||
if (observer != null) {
|
if (observer == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
synchronized (observer) {
|
synchronized (observer) {
|
||||||
@@ -275,4 +275,4 @@ public abstract class AbstractRipper
|
|||||||
logger.error("Got exception while running ripper:", e);
|
logger.error("Got exception while running ripper:", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user