Hello,
the search for "author" are case sensitive!
Thath´s wrong for us, we need a non case sensetive search!
In the source code we found the metode "authorMatch":
return entry.getAuthor().equals(author);
This must be changed in:
return entry.getAuthor().toLowerCase().equals(author.toLowerCase());
Thank you and
byebye