mirror of https://gitlab.com/bashrc2/epicyon
Check text
parent
e5950d4363
commit
d4751a47c6
|
@ -236,8 +236,8 @@ def getRSS(session, url: str, moderated: bool,
|
||||||
try:
|
try:
|
||||||
result = session.get(url, headers=sessionHeaders, params=sessionParams)
|
result = session.get(url, headers=sessionHeaders, params=sessionParams)
|
||||||
if result:
|
if result:
|
||||||
if int(len(result) / 1024) < maxFeedSizeKb and \
|
if int(len(result.text) / 1024) < maxFeedSizeKb and \
|
||||||
not containsInvalidChars(result):
|
not containsInvalidChars(result.text):
|
||||||
return xmlStrToDict(result.text, moderated, maxPostsPerSource)
|
return xmlStrToDict(result.text, moderated, maxPostsPerSource)
|
||||||
else:
|
else:
|
||||||
print('WARN: feed is too large: ' + url)
|
print('WARN: feed is too large: ' + url)
|
||||||
|
|
Loading…
Reference in New Issue