I have built a customized eh reader for my android tablet.
And I use API to get the tag information of the gallery.
I just found that it crashed every time I browse for a specific gallery.
This gallery:
https://e-hentai.org/g/2310902/4b65bf6480/When my application make a request to eh api endpoint.
It always responds with empty string.
This is the cause of the crash.
I have no idea why.
Maybe the name of the uploader?
Here is the python code to reproduce the error:
```
import requests
request_json = {'method': 'gdata', 'gidlist': [[2310902, '4b65bf6480']], 'namespace': 1}
s = requests.Session()
r = s.post(url='https://api.e-hentai.org/api.php', json=request_json)
print(r.text)
```