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:
@@ -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)
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user