From d8ae34ef86422ce23d6934374a5213b90df07343 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 21 Apr 2015 09:06:41 +0200 Subject: [PATCH] fix: don't attempt openalias when processing a PR --- plugins/openalias.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/openalias.py b/plugins/openalias.py index 4e50bbe5..386db017 100644 --- a/plugins/openalias.py +++ b/plugins/openalias.py @@ -85,6 +85,8 @@ class Plugin(BasePlugin): return if self.win.payto_e.is_multiline(): # only supports single line entries atm return + if self.win.payto_e.is_pr: + return url = str(self.win.payto_e.toPlainText()) url = url.replace('@', '.') # support email-style addresses, per the OA standard