diff options
| author | Felipe Contreras <felipe.contreras@gmail.com> | 2021-05-15 16:21:02 -0500 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-05-17 07:25:14 -0300 |
| commit | 9574fb60991fa81799fbd1d26d41693ca2794e6b (patch) | |
| tree | ba33e4b827c0a28cab95b876ed2eb0af2fbcbb09 /bindings/ruby/query.c | |
| parent | fba9774a81e90a179ccfa810c47a501eaf266e2b (diff) | |
ruby: add all data types
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/query.c')
| -rw-r--r-- | bindings/ruby/query.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/ruby/query.c b/bindings/ruby/query.c index b0fb4ea7..79727d6a 100644 --- a/bindings/ruby/query.c +++ b/bindings/ruby/query.c @@ -142,7 +142,7 @@ notmuch_rb_query_search_threads (VALUE self) if (status) notmuch_rb_status_raise (status); - return Data_Wrap_Notmuch_Object (notmuch_rb_cThreads, threads); + return Data_Wrap_Notmuch_Object (notmuch_rb_cThreads, ¬much_rb_threads_type, threads); } /* @@ -163,7 +163,7 @@ notmuch_rb_query_search_messages (VALUE self) if (status) notmuch_rb_status_raise (status); - return Data_Wrap_Notmuch_Object (notmuch_rb_cMessages, messages); + return Data_Wrap_Notmuch_Object (notmuch_rb_cMessages, ¬much_rb_messages_type, messages); } /* |
