add err msg on failure during Load_rss

pull/1/head
reger 10 years ago
parent 96292cf3eb
commit 2f84b04fa9

@ -59,7 +59,7 @@
</dl> </dl>
<input type="submit" name="indexAllItemContent" value="Add All Items to Index (full content of url)" /> <input type="submit" name="indexAllItemContent" value="Add All Items to Index (full content of url)" />
#(/showload)#</dd> #(/showload)#</dd>
#(showerrmsg)#::<dd class="error">#[msgtxt]#</dd>#(/showerrmsg)#
</dl> </dl>
</fieldset> </fieldset>
</form> </form>

@ -73,6 +73,7 @@ public class Load_RSS_p {
prop.put("shownewfeeds", 0); prop.put("shownewfeeds", 0);
prop.put("showscheduledfeeds", 0); prop.put("showscheduledfeeds", 0);
prop.put("url", ""); prop.put("url", "");
prop.put("showerrmsg", 0);
if (post != null && post.containsKey("removeSelectedFeedsNewList")) { if (post != null && post.containsKey("removeSelectedFeedsNewList")) {
for (final Map.Entry<String, String> entry: post.entrySet()) { for (final Map.Entry<String, String> entry: post.entrySet()) {
@ -276,6 +277,8 @@ public class Load_RSS_p {
rss = resource == null ? null : RSSReader.parse(RSSFeed.DEFAULT_MAXSIZE, resource); rss = resource == null ? null : RSSReader.parse(RSSFeed.DEFAULT_MAXSIZE, resource);
} catch (final IOException e) { } catch (final IOException e) {
ConcurrentLog.warn("Load_RSS", e.getMessage()); ConcurrentLog.warn("Load_RSS", e.getMessage());
prop.put("showerrmsg", 1);
prop.put("showerrmsg_msgtxt", "no valid response from given url");
return prop; // if no response nothing to process further return prop; // if no response nothing to process further
} }

Loading…
Cancel
Save