From 034e752aa4dc31442437af08cc6b630f940b6802 Mon Sep 17 00:00:00 2001
From: Lin Jen-Shin <godfat@godfat.org>
Date: Thu, 31 Mar 2016 22:18:30 +0800
Subject: [PATCH] Handle InvalidIssueError as InvalidNoteError

---
 app/workers/email_receiver_worker.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app/workers/email_receiver_worker.rb b/app/workers/email_receiver_worker.rb
index f2649e38eb3..95469f1c486 100644
--- a/app/workers/email_receiver_worker.rb
+++ b/app/workers/email_receiver_worker.rb
@@ -39,7 +39,8 @@ class EmailReceiverWorker
       reason = "You are not allowed to respond to the thread you are replying to. If you believe this is in error, contact a staff member."
     when Gitlab::Email::Receiver::NoteableNotFoundError
       reason = "The thread you are replying to no longer exists, perhaps it was deleted? If you believe this is in error, contact a staff member."
-    when Gitlab::Email::Receiver::InvalidNoteError
+    when Gitlab::Email::Receiver::InvalidNoteError,
+         Gitlab::Email::Receiver::InvalidIssueError
       can_retry = true
       reason = e.message
     else
-- 
GitLab