Fixing bug in AbstractRipper

This commit is contained in:
4pr0n 2014-03-05 04:55:51 -08:00
parent 1e5d76742c
commit 0fc42d844b

View File

@ -244,7 +244,7 @@ public abstract class AbstractRipper
}
public void sendUpdate(STATUS status, Object message) {
if (observer != null) {
if (observer == null) {
return;
}
synchronized (observer) {
@ -275,4 +275,4 @@ public abstract class AbstractRipper
logger.error("Got exception while running ripper:", e);
}
}
}
}