Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nate Graham
Kid3
Commits
5202e211
Commit
5202e211
authored
Feb 21, 2012
by
Urs Fleisch
Browse files
URL encode album link for Discogs import (SF Bug #3488638).
parent
9f5566cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/core/import/discogsimporter.cpp
View file @
5202e211
...
...
@@ -25,6 +25,7 @@
*/
#include "discogsimporter.h"
#include <QUrl>
#include "serverimporterconfig.h"
#include "trackdatamodel.h"
#include "configstore.h"
...
...
@@ -604,5 +605,6 @@ void DiscogsImporter::sendTrackListQuery(
* Query looks like this:
* http://www.discogs.com/release/761529
*/
sendRequest
(
discogsServer
,
QString
(
"/"
)
+
cat
+
'/'
+
id
,
true
);
sendRequest
(
discogsServer
,
QString
(
"/"
)
+
QUrl
::
toPercentEncoding
(
cat
)
+
'/'
+
id
,
true
);
}
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