Skip to content

Commit 8b73a6b

Browse files
authored
Fix subject parsing in parse_sent_message_payload_new (KartikTalwar#726)
1 parent bc48caf commit 8b73a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gmail.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1787,7 +1787,7 @@ var Gmail = function(localJQuery) {
17871787

17881788
const sent_email_id = sent_email[0];
17891789

1790-
const sent_email_subject = sent_email[8];
1790+
const sent_email_subject = sent_email[7];
17911791
const sent_email_timestamp = sent_email[6];
17921792
const sent_email_date = new Date(sent_email_timestamp);
17931793

0 commit comments

Comments
 (0)