mirror of https://gitlab.com/bashrc2/epicyon
Maximum newswire posts per source in config file
parent
876b29b7be
commit
257a2d1e88
|
@ -1929,6 +1929,13 @@ dateonly = getConfigParam(baseDir, 'dateonly')
|
||||||
if dateonly:
|
if dateonly:
|
||||||
args.dateonly = dateonly
|
args.dateonly = dateonly
|
||||||
|
|
||||||
|
# set the maximum number of newswire posts per account or rss feed
|
||||||
|
maxNewswirePostsPerSource = \
|
||||||
|
getConfigParam(baseDir, 'maxNewswirePostsPerSource')
|
||||||
|
if maxNewswirePostsPerSource:
|
||||||
|
if maxNewswirePostsPerSource.isdigit():
|
||||||
|
args.maxNewswirePostsPerSource = maxNewswirePostsPerSource
|
||||||
|
|
||||||
YTDomain = getConfigParam(baseDir, 'youtubedomain')
|
YTDomain = getConfigParam(baseDir, 'youtubedomain')
|
||||||
if YTDomain:
|
if YTDomain:
|
||||||
if '://' in YTDomain:
|
if '://' in YTDomain:
|
||||||
|
|
Loading…
Reference in New Issue