fix cant upload

This commit is contained in:
qkqpttgf
2021-10-07 12:39:49 +08:00
committed by GitHub
parent cb478ccf66
commit 0220c29dbf
+3 -1
View File
@@ -1010,8 +1010,10 @@ class Onedrive {
} else { } else {
if ($path=='' or $path=='/') { if ($path=='' or $path=='/') {
$url .= $method; $url .= $method;
} else { } elseif (substr($path, 0, 6)=="/items") {
$url .= '/' . $method; $url .= '/' . $method;
} else {
$url .= ':/' . $method;
} }
$method='POST'; $method='POST';
$headers['Content-Type'] = 'application/json'; $headers['Content-Type'] = 'application/json';