1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-06 05:47:29 +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) { public void sendUpdate(STATUS status, Object message) {
if (observer != null) { if (observer == null) {
return; return;
} }
synchronized (observer) { synchronized (observer) {