mirror of
https://github.com/YGGverse/aquatic-crawler.git
synced 2026-04-02 01:55:28 +00:00
prevent unexpected memory usage by filter values from unknown source
This commit is contained in:
parent
203c3041d2
commit
57b246a879
3 changed files with 42 additions and 13 deletions
|
|
@ -198,7 +198,7 @@ async fn main() -> Result<()> {
|
|||
for (k, v) in index.list() {
|
||||
rss.push(
|
||||
k,
|
||||
v.name.as_ref().unwrap_or(k),
|
||||
v.name().unwrap_or(k),
|
||||
None, // @TODO
|
||||
Some(&v.time.to_rfc2822()),
|
||||
)?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue