1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

ruby: fix function hdata_get_string

This commit is contained in:
Sébastien Helleu
2022-08-02 20:50:48 +02:00
parent 8f6395e889
commit 39f2b2f7b9
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -6352,8 +6352,7 @@ weechat_ruby_api_hdata_get_string (VALUE class, VALUE hdata, VALUE property)
c_hdata = StringValuePtr (hdata);
c_property = StringValuePtr (property);
result = weechat_hdata_get_var_type_string (API_STR2PTR(c_hdata),
c_property);
result = weechat_hdata_get_string (API_STR2PTR(c_hdata), c_property);
API_RETURN_STRING(result);
}