mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 03:32:16 -05:00
Fix WebDavFolder.equals()
This commit is contained in:
parent
b69bba01da
commit
e45d780c6f
@ -1906,7 +1906,10 @@ public class WebDavStore extends RemoteStore {
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
return false;
|
||||
if (o instanceof WebDavFolder) {
|
||||
return ((WebDavFolder) o).mName.equals(mName);
|
||||
}
|
||||
return super.equals(o);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user