Merge pull request #385 from dzaikos/cache-image-size-2
Cache image size (take 2)
This commit is contained in:
커밋
c7a0cb7cf4
1개의 변경된 파일과 2개의 추가작업 그리고 1개의 파일을 삭제
|
@ -2,6 +2,7 @@
|
|||
define_default('DAEMON_UPDATE_LOGIN_LIMIT', 30);
|
||||
define_default('DAEMON_FEED_LIMIT', 500);
|
||||
define_default('DAEMON_SLEEP_INTERVAL', 120);
|
||||
define_default('_MIN_CACHE_IMAGE_SIZE', 1024);
|
||||
|
||||
function update_feedbrowser_cache() {
|
||||
|
||||
|
@ -1173,7 +1174,7 @@
|
|||
if (!file_exists($local_filename)) {
|
||||
$file_content = fetch_file_contents($src);
|
||||
|
||||
if ($file_content && strlen($file_content) > 1024) {
|
||||
if ($file_content && strlen($file_content) > _MIN_CACHE_IMAGE_SIZE) {
|
||||
file_put_contents($local_filename, $file_content);
|
||||
}
|
||||
}
|
||||
|
|
불러오는 중…
Reference in a new issue