Working on issue #1161 - Broken error handing for unaccessable comment attachments.

This commit is contained in:
Thorsten Eckel 2017-06-29 12:14:50 +02:00
parent 0170e977f6
commit aa50feed73

View file

@ -3,7 +3,7 @@ module Import
class Ticket
class Comment
class Attachment
extend Import::Helper
include Import::Helper
def initialize(attachment, local_article)
@ -35,6 +35,7 @@ module Import
)
return response if response.success?
log response.error
nil
end
end
end