Amazon doesn't like colons
This commit is contained in:
parent
3876a85a73
commit
f1d7faf02d
1 changed files with 2 additions and 2 deletions
|
@ -72,8 +72,8 @@ export function* search(data) {
|
||||||
try {
|
try {
|
||||||
const type = data.type;
|
const type = data.type;
|
||||||
const results = yield client.itemSearch({
|
const results = yield client.itemSearch({
|
||||||
author: data.artist.name.normalize(),
|
author: data.artist.name.replace(':', ' '),
|
||||||
title: data.name.normalize(),
|
title: data.name.replace(':', ' '),
|
||||||
searchIndex: 'MP3Downloads',
|
searchIndex: 'MP3Downloads',
|
||||||
responseGroup: 'ItemAttributes,Tracks,Images,ItemIds',
|
responseGroup: 'ItemAttributes,Tracks,Images,ItemIds',
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue