Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7d6f1c72 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

prevent remote deletion after local deletion due to fileObserver

It also prevent Upload after a download due fileObserver
parent d1bab047
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ public class SyncWrapper {
    public boolean equals(Object obj) {
        if (obj instanceof SyncRequest) {
            final SyncRequest objRequest = (SyncRequest) obj;
            return (objRequest.equals(this.request) && objRequest.getOperationType() == this.request.getOperationType());
            return (objRequest.equals(this.request));
        }
        return super.equals(obj);
    }