Closed masipcat closed 3 years ago
I'm using Audinaut with Gonic. Gonic returns the artist ids like ar-000 and Audinaut is adding ar- at the begining of the id: https://github.com/nvllsvm/Audinaut/blob/4c5406c916974ad768f0bcbf350ef30968f0d62b/app/src/main/java/net/nullsum/audinaut/provider/AudinautSearchProvider.java#L139
ar-000
ar-
so the resulting artist id is ar-ar-000. When a search result is clicked, Audinaut removes all the ar- in the string with a resulting artist id 000 and gonic complains about missing id parameter.
ar-ar-000
000
Thanks, I'll try to release a patch release in the coming days.
Awesome :)
I'm using Audinaut with Gonic. Gonic returns the artist ids like
ar-000
and Audinaut is addingar-
at the begining of the id: https://github.com/nvllsvm/Audinaut/blob/4c5406c916974ad768f0bcbf350ef30968f0d62b/app/src/main/java/net/nullsum/audinaut/provider/AudinautSearchProvider.java#L139so the resulting artist id is
ar-ar-000
. When a search result is clicked, Audinaut removes all thear-
in the string with a resulting artist id000
and gonic complains about missing id parameter.