We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d6b01e commit 7ff131cCopy full SHA for 7ff131c
apps/parse.py
@@ -303,7 +303,10 @@ def parse_query(string, timeout=None):
303
304
break
305
306
- if "ra" not in query["params"] and query["object"][0].isalpha():
+ # Note: for query["object"], use element 1 and not 0
307
+ # to enable catalog name starting with a digit, like
308
+ # 3FHL or 4LAC...
309
+ if "ra" not in query["params"] and query["object"][1].isalpha():
310
# Simbad
311
res = call_resolver(query["object"], "simbad", timeout=timeout)
312
if res:
0 commit comments