Fixed the bug where certain searches, like "python" or "loop", crashed Mapache Search. The issue: we were assuming any StackExchange link of the form "/questions/..." was a question, and trying to parse the ID from the url. But some links are of the form "/questions/tagged/python", which is actually not a question at all but a category. The fix was to stop treatting links which don't contain a number after the "/questions/" as StackExchange questions
Fixed the bug where certain searches, like "python" or "loop", crashed Mapache Search. The issue: we were assuming any StackExchange link of the form "/questions/..." was a question, and trying to parse the ID from the url. But some links are of the form "/questions/tagged/python", which is actually not a question at all but a category. The fix was to stop treatting links which don't contain a number after the "/questions/" as StackExchange questions