Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
f0386459
Commit
f0386459
authored
Oct 15, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storage/curl: follow redirects for collections without trailing slash
parent
e98d4670
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
NEWS
NEWS
+1
-0
CurlStorage.cxx
src/storage/plugins/CurlStorage.cxx
+2
-0
No files found.
NEWS
View file @
f0386459
...
@@ -2,6 +2,7 @@ ver 0.21.16 (not yet released)
...
@@ -2,6 +2,7 @@ ver 0.21.16 (not yet released)
* storage
* storage
- curl: request the "resourcetype" property to fix database update
- curl: request the "resourcetype" property to fix database update
- curl: URL-encode more paths
- curl: URL-encode more paths
- curl: follow redirects for collections without trailing slash
* update
* update
- fix crash when music_directory is not a directory
- fix crash when music_directory is not a directory
* fix build with iconv() instead of ICU
* fix build with iconv() instead of ICU
...
...
src/storage/plugins/CurlStorage.cxx
View file @
f0386459
...
@@ -259,6 +259,8 @@ public:
...
@@ -259,6 +259,8 @@ public:
CommonExpatParser
(
ExpatNamespaceSeparator
{
'|'
})
CommonExpatParser
(
ExpatNamespaceSeparator
{
'|'
})
{
{
request
.
SetOption
(
CURLOPT_CUSTOMREQUEST
,
"PROPFIND"
);
request
.
SetOption
(
CURLOPT_CUSTOMREQUEST
,
"PROPFIND"
);
request
.
SetOption
(
CURLOPT_FOLLOWLOCATION
,
1l
);
request
.
SetOption
(
CURLOPT_MAXREDIRS
,
1l
);
request_headers
.
Append
(
StringFormat
<
40
>
(
"depth: %u"
,
depth
));
request_headers
.
Append
(
StringFormat
<
40
>
(
"depth: %u"
,
depth
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment