try fix file content

This commit is contained in:
qkqpttgf 2020-04-10 10:40:18 +08:00 committed by GitHub
parent 2a1b9af033
commit bb943b8551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -1112,6 +1112,15 @@ function fetch_files($path = '/')
savecache('path_' . $path, $files);
}
}
if (isset($files['file'])) {
if (in_array(splitlast($files['name'],'.')[1], $exts['txt'])) {
if (!(isset($files['content'])&&$files['content']['stat']==200)) {
$content1 = curl_request($files[$_SERVER['DownurlStrName']]);
$files['content'] = $content1;
savecache('path_' . $path, $files);
}
}
}
if (isset($files['error'])) {
$files['error']['stat'] = $arr['stat'];
}