diff --git a/lib/services/amazon/index.js b/lib/services/amazon/index.js index 8cb302a..51d5f9c 100644 --- a/lib/services/amazon/index.js +++ b/lib/services/amazon/index.js @@ -72,8 +72,8 @@ export function* search(data) { try { const type = data.type; const results = yield client.itemSearch({ - author: data.artist.name.normalize(), - title: data.name.normalize(), + author: data.artist.name.replace(':', ' '), + title: data.name.replace(':', ' '), searchIndex: 'MP3Downloads', responseGroup: 'ItemAttributes,Tracks,Images,ItemIds', });