# HG changeset patch # User Goffi # Date 1371741321 -7200 # Node ID 47d3a22b4629c35b2623576e8ee89b4680a05319 # Parent 9a8fbf0e86912971d6bfa66028816b359837f420 plugin XEP-0277: RuntimeError is now catched during link parsing (can happen if no service jid is found) diff -r 9a8fbf0e8691 -r 47d3a22b4629 src/plugins/plugin_xep_0277.py --- a/src/plugins/plugin_xep_0277.py Thu Jun 20 12:37:06 2013 +0200 +++ b/src/plugins/plugin_xep_0277.py Thu Jun 20 17:15:21 2013 +0200 @@ -105,7 +105,8 @@ microblog_data['comments_service'] = service.full() microblog_data['comments_node'] = node break - except (KeyError, exceptions.DataError): + except (KeyError, exceptions.DataError, RuntimeError): + warning("Can't parse link") continue except (AttributeError, KeyError):