mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
fix wrong condition
This commit is contained in:
@@ -61,7 +61,7 @@ public class PubSubHubbubCallbackREST {
|
|||||||
|
|
||||||
List<Feed> feeds = feedDAO.findByTopic(topic);
|
List<Feed> feeds = feedDAO.findByTopic(topic);
|
||||||
|
|
||||||
if (feeds.isEmpty()) {
|
if (feeds.isEmpty() == false) {
|
||||||
for (Feed feed : feeds) {
|
for (Feed feed : feeds) {
|
||||||
log.debug("activated push notifications for {}",
|
log.debug("activated push notifications for {}",
|
||||||
feed.getPushTopic());
|
feed.getPushTopic());
|
||||||
|
|||||||
Reference in New Issue
Block a user