diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-12-07 18:32:06 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-12-07 18:32:06 +0000 |
commit | b4eed8099cc3e3f445fb97f882ad207b0148abac (patch) | |
tree | 5576e9c756a958cc4e395ab44fa2f5906a196a6d | |
parent | b041ac5805169cc70f5b7de4f8e95b5d31c387d9 (diff) | |
download | prosody-b4eed8099cc3e3f445fb97f882ad207b0148abac.tar.gz prosody-b4eed8099cc3e3f445fb97f882ad207b0148abac.zip |
prosody: Less strict matching for the magic 'interrupted' error
-rwxr-xr-x | prosody | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -302,7 +302,7 @@ end function loop() -- Error handler for errors that make it this far local function catch_uncaught_error(err) - if type(err) == "string" and err:match("%d*: interrupted!$") then + if type(err) == "string" and err:match("interrupted!$") then return "quitting"; end |