actually use both guid and url as this is what we use later on to identify entries

This commit is contained in:
Athou
2013-05-27 22:54:40 +02:00
parent 6f96bd6df1
commit e43ec5c2f4

View File

@@ -135,7 +135,7 @@ public class FeedRefreshUpdater {
private boolean updateEntry(final Feed feed, final FeedEntry entry,
final List<FeedSubscription> subscriptions) {
String key = StringUtils.trimToEmpty(entry.getUrl());
String key = StringUtils.trimToEmpty(entry.getGuid() + entry.getUrl());
Lock lock = locks.get(key);
boolean locked = false;
try {