1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +00:00

style(rubocop): Lint/MissingSuper

هذا الالتزام موجود في:
Adam Cooke
2024-02-10 23:20:30 +00:00
الأصل be97f43308
التزام 4674e63b5f
4 ملفات معدلة مع 7 إضافات و2 حذوفات

عرض الملف

@@ -111,6 +111,7 @@ module Mail
# Handle attached emails as attachments
class AttachmentsList < Array
# rubocop:disable Lint/MissingSuper
def initialize(parts_list)
@parts_list = parts_list
@content_disposition_type = "attachment"
@@ -119,6 +120,7 @@ module Mail
end.flatten.compact.each { |a| self << a }
self
end
# rubocop:enable Lint/MissingSuper
end