forked from Archives/Athou_commafeed
fix wrong condition
This commit is contained in:
@@ -61,7 +61,7 @@ public class PubSubHubbubCallbackREST {
|
||||
|
||||
List<Feed> feeds = feedDAO.findByTopic(topic);
|
||||
|
||||
if (feeds.isEmpty()) {
|
||||
if (feeds.isEmpty() == false) {
|
||||
for (Feed feed : feeds) {
|
||||
log.debug("activated push notifications for {}",
|
||||
feed.getPushTopic());
|
||||
|
||||
Reference in New Issue
Block a user