chore: refresh host architecture baseline

This commit is contained in:
jxxghp
2026-08-22 13:28:23 +08:00
parent 3fc593f5f6
commit 4fbe19a49c
2 changed files with 8 additions and 5 deletions
+1 -3
View File
@@ -725,9 +725,7 @@ class TorrentsChain(ChainBase):
target_cache[domain].append(context)
# 如果超过了限制条数则移除掉前面的,音乐与影视各自独立计算配额
if len(target_cache[domain]) > self.runtime_config.torrent_cache_size:
target_cache[domain] = target_cache[domain][
-self.runtime_config.torrent_cache_size:
]
target_cache[domain] = target_cache[domain][-self.runtime_config.torrent_cache_size:]
finally:
torrents.clear()
music_torrents.clear()