Closed amoeba closed 7 years ago
> query(mn, list(q = '*:*', + sort = 'dateUploaded+desc', + rows = 10)) Show Traceback Rerun with Debug Error in strsplit(URL, "") : non-character argument
I made a guess that the issue was that I set rows to 10 and not '10':
rows
10
'10'
query(mn, list(q = '*:*', sort = 'dateUploaded+desc', rows = "10"))
Could a more helpful error be produced or could the method automatically try to convert to a character vector in this case?
Fixed in commit 2738e7b244c90a21312bcd80e97ad5d4647b37f8
I made a guess that the issue was that I set
rows
to10
and not'10'
:Could a more helpful error be produced or could the method automatically try to convert to a character vector in this case?