aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/url.c b/src/url.c
index 927b61889..d1a85b32a 100644
--- a/src/url.c
+++ b/src/url.c
@@ -1444,7 +1444,7 @@ url_email_start (const gchar *begin, const gchar *end, const gchar *pos, url_mat
while (p > begin && (is_domain (*p) || *p == '.' || *p == '_')) {
p --;
}
- if (!is_domain (*p)) {
+ if (!is_domain (*p) && p != pos - 1) {
match->m_begin = p + 1;
return TRUE;
}