diff options
| author | Felipe Contreras <felipe.contreras@gmail.com> | 2023-03-22 17:43:44 -0600 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2023-04-02 19:00:49 -0300 |
| commit | ae1336dea5cc6a221699fff260d8b44cee677f77 (patch) | |
| tree | c4648b41e7d193c35d2c643ae006dbb7befcaff3 /bindings/ruby/message.c | |
| parent | 6273966d0b50541a37a652ccf6113f184eff5300 (diff) | |
ruby: add tags helper
Right now it doesn't do much, but it will help for further
reorganization.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/message.c')
| -rw-r--r-- | bindings/ruby/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ruby/message.c b/bindings/ruby/message.c index f45c95cc..81085f75 100644 --- a/bindings/ruby/message.c +++ b/bindings/ruby/message.c @@ -221,7 +221,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, ¬much_rb_tags_type, tags); + return notmuch_rb_tags_get (tags); } /* |
