1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-01 03:20:20 +02:00

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) {