fix wrong condition

This commit is contained in:
Athou
2013-06-08 17:15:44 +02:00
parent 23dd016f42
commit fe0cc1d439

View File

@@ -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());