1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +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
View File
@@ -34,6 +34,7 @@ Bug fixes::
* javascript: fix return of long value in functions infolist_time, hdata_long and hdata_time
* php: fix function hdata_compare
* relay: fix parsing of IRC messages received from clients (issue #1796)
* ruby: fix function hdata_get_string
* scripts: fix issue with year ≥ 2038 in functions infolist_new_var_time, print_date_tags and print_y_date_tags (plugins: python/lua/tcl/guile/javascript)
* scripts: fix issue with long interval in function hook_timer (plugins: python/ruby/lua/tcl/guile/javascript/php)
* xfer: fix crash when closing DCC chat buffer
+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);
}