Update Onedrive.php

follow the 302 when curl the DownurlStrName
pull/686/head
asoul-rec 2023-04-19 08:27:27 -04:00 committed by GitHub
parent 4a9d8c72c8
commit 1d4a5817fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -121,7 +121,10 @@ 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], '', [], 1);
if ($content1['stat'] == 302) {
$content1 = curl('GET', $content1["returnhead"]["location"]);
}
$tmp = null;
$tmp = json_decode(json_encode($content1), true);
if ($tmp['body']===null) {