set disabledUntil to now instead of null when the error count threshold has not been reached yet

This commit is contained in:
Athou
2013-08-12 16:20:55 +02:00
parent 5ef8fd18ca
commit 321260b0a5

View File

@@ -314,7 +314,7 @@ public class FeedUtils {
disabledHours = Math.min(24 * 7, disabledHours);
return DateUtils.addHours(now, disabledHours);
}
return null;
return now;
}
/**