aboutsummaryrefslogtreecommitdiff
path: root/bindings/ruby/message.c
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2021-05-15 16:21:02 -0500
committerDavid Bremner <david@tethera.net>2021-05-17 07:25:14 -0300
commit9574fb60991fa81799fbd1d26d41693ca2794e6b (patch)
treeba33e4b827c0a28cab95b876ed2eb0af2fbcbb09 /bindings/ruby/message.c
parentfba9774a81e90a179ccfa810c47a501eaf266e2b (diff)
ruby: add all data types
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/message.c')
-rw-r--r--bindings/ruby/message.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bindings/ruby/message.c b/bindings/ruby/message.c
index 1990bb97..b3aed604 100644
--- a/bindings/ruby/message.c
+++ b/bindings/ruby/message.c
@@ -89,7 +89,7 @@ notmuch_rb_message_get_replies (VALUE self)
messages = notmuch_message_get_replies (message);
- return Data_Wrap_Notmuch_Object (notmuch_rb_cMessages, messages);
+ return Data_Wrap_Notmuch_Object (notmuch_rb_cMessages, &notmuch_rb_messages_type, messages);
}
/*
@@ -125,7 +125,7 @@ notmuch_rb_message_get_filenames (VALUE self)
fnames = notmuch_message_get_filenames (message);
- return Data_Wrap_Notmuch_Object (notmuch_rb_cFileNames, fnames);
+ return Data_Wrap_Notmuch_Object (notmuch_rb_cFileNames, &notmuch_rb_filenames_type, fnames);
}
/*
@@ -226,7 +226,7 @@ notmuch_rb_message_get_tags (VALUE self)
if (!tags)
rb_raise (notmuch_rb_eMemoryError, "Out of memory");
- return Data_Wrap_Notmuch_Object (notmuch_rb_cTags, tags);
+ return Data_Wrap_Notmuch_Object (notmuch_rb_cTags, &notmuch_rb_tags_type, tags);
}
/*