1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 22:36:38 +02:00

guile: fix function hdata_get_string

This commit is contained in:
Sébastien Helleu
2022-08-02 20:50:24 +02:00
parent 53df45de48
commit 8f6395e889
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -30,6 +30,7 @@ Bug fixes::
* irc: fix duplicated channels in autojoin option when autojoin_dynamic is enabled (issue #1795)
* irc: fix display of TOPIC and QUIT messages with an empty trailing parameter (issue #1797)
* guile: fix function hdata_get_string
* 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)
+2 -2
View File
@@ -4954,8 +4954,8 @@ weechat_guile_api_hdata_get_string (SCM hdata, SCM property)
if (!scm_is_string (hdata) || !scm_is_string (property))
API_WRONG_ARGS(API_RETURN_EMPTY);
result = weechat_hdata_get_var_type_string (API_STR2PTR(API_SCM_TO_STRING(hdata)),
API_SCM_TO_STRING(property));
result = weechat_hdata_get_string (API_STR2PTR(API_SCM_TO_STRING(hdata)),
API_SCM_TO_STRING(property));
API_RETURN_STRING(result);
}