Skip to content
Merged

👮 #100

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/models/list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class List

def initialize(id, name, label)
@id, @name, @label = id, name, label
nil
nil # rubocop:disable Lint/Void
end

attr_reader :id, :name, :label
Expand Down
1 change: 0 additions & 1 deletion app/models/message.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def from_mail(mail, list, list_seq)
(($partials ||= {})[match[:id]] ||= []) << self
raise PartialSaved
end
raise "Unknown content_type: #{part.content_type}"
else
raise "Unknown content_type: #{part.content_type}"
end
Expand Down