pull/686/merge
asoul-rec 2023-08-21 18:10:47 +08:00 committed by GitHub
commit d13ac6ed6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 7 deletions

View File

@ -2302,11 +2302,7 @@ function render_list($path = '', $files = [])
} else {
if (!($html = getcache('customTheme'))) {
$file_path = $theme;
$tmp = curl('GET', $file_path, '', [], 1);
if ($tmp['stat']==302) {
error_log1(json_encode($tmp));
$tmp = curl('GET', $tmp["returnhead"]["Location"]);
}
$tmp = curl('GET', $file_path, '', [], 0, 1);
if (!!$tmp['body']) $html = $tmp['body'];
savecache('customTheme', $html, '', 9999);
}

View File

@ -62,7 +62,7 @@ class Onedrive {
//savecache('path_' . $parentpath, $parentfiles, $this->disktag);
if ($parentfiles['children'][$filename]['size']<1024*1024) {
if (!(isset($parentfiles['children'][$filename]['content'])&&$parentfiles['children'][$filename]['content']['stat']==200)) {
$content1 = curl('GET', $parentfiles['children'][$filename][$this->DownurlStrName]);
$content1 = curl('GET', $parentfiles['children'][$filename][$this->DownurlStrName], '', [], 0, 1);
$tmp = null;
$tmp = json_decode(json_encode($content1), true);
if ($tmp['body']===null) {
@ -121,7 +121,7 @@ class Onedrive {
if (in_array(strtolower(splitlast($files['name'],'.')[1]), $exts['txt'])) {
if ($files['size']<1024*1024) {
if (!(isset($files['content'])&&$files['content']['stat']==200)) {
$content1 = curl('GET', $files[$this->DownurlStrName]);
$content1 = curl('GET', $files[$this->DownurlStrName], '', [], 0, 1);
$tmp = null;
$tmp = json_decode(json_encode($content1), true);
if ($tmp['body']===null) {