Fix #4441: BUR form: display original request in the error page.

This commit is contained in:
evazion
2020-05-04 03:18:16 -05:00
parent 12d83408ab
commit 5feb29ba57
3 changed files with 11 additions and 9 deletions

View File

@@ -73,7 +73,7 @@ class AliasAndImplicationImporter
# okay
else
raise Error, "Unknown token: #{token[0]}"
raise NotImplementedError, "Unknown token: #{token[0]}" # should never happen
end
end
end
@@ -90,6 +90,8 @@ class AliasAndImplicationImporter
args[0]
end
end.sort.uniq
rescue Error
[]
end
private