& -> &&
This commit is contained in:
parent
9ef3c99899
commit
b02c70425e
|
@ -76,7 +76,7 @@ public class FeedItemFilter {
|
|||
if (showQueued && !queued) continue;
|
||||
if (showNotQueued && queued) continue;
|
||||
|
||||
boolean downloaded = item.getMedia() != null & item.getMedia().isDownloaded();
|
||||
boolean downloaded = item.getMedia() != null && item.getMedia().isDownloaded();
|
||||
if (showDownloaded && !downloaded) continue;
|
||||
if (showNotDownloaded && downloaded) continue;
|
||||
|
||||
|
|
Loading…
Reference in New Issue