ish_models 0.0.33.300 → 0.0.33.301
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/office/email_message.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4efc52be97806ddfc99cbb6fa6cc0c183e51a0f32384d789906a98793906616d
|
|
4
|
+
data.tar.gz: '084169118e8a9e6c4ef65f07ab3c5cfbc79c77136f6d3974adc1f29b1a0157f0'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0bd8bf92613eb20ab1518dc9fabe62dba096000845dc691b39946cff8a4b4578905e0ee5f57121394fede7539326d0c1df56ff783356614dbdde250f0ab07c84
|
|
7
|
+
data.tar.gz: a3aa5e12b8ada259599b578f67dabfab9c0e2e283fa00d03f03e5cefc9e3f2e7fcfae14a912cfabdcba0cd7f786b1442a9b7851fe4400f52ce9015dff2b33934
|
data/lib/office/email_message.rb
CHANGED
|
@@ -152,10 +152,10 @@ class Office::EmailMessage
|
|
|
152
152
|
# attachment.save
|
|
153
153
|
|
|
154
154
|
if part.content_type.include?('text/html')
|
|
155
|
-
part_html = part.decoded
|
|
155
|
+
self.part_html = part.decoded
|
|
156
156
|
|
|
157
157
|
elsif part.content_type.include?("text/plain")
|
|
158
|
-
part_txt = part.decoded
|
|
158
|
+
self.part_txt = part.decoded
|
|
159
159
|
|
|
160
160
|
elsif part.content_type.include?("text/calendar")
|
|
161
161
|
;
|
|
@@ -167,7 +167,7 @@ class Office::EmailMessage
|
|
|
167
167
|
;
|
|
168
168
|
|
|
169
169
|
else
|
|
170
|
-
|
|
170
|
+
self.logs.push "444 No action for a part with content_type #{part.content_type}"
|
|
171
171
|
|
|
172
172
|
end
|
|
173
173
|
end
|