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

xfer: fix display of input prompt in DCC chat buffers (issue #2128)

This commit is contained in:
Sébastien Helleu
2024-06-06 13:30:25 +02:00
parent 0b1e940829
commit 396f47e9ae
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
### Fixed
- irc: fix display of input prompt in private buffers ([#2128](https://github.com/weechat/weechat/issues/2128))
- irc, xfer: fix display of input prompt in IRC private buffers and DCC chat buffers ([#2128](https://github.com/weechat/weechat/issues/2128))
- irc: close /list buffer when the server buffer is closed ([#2121](https://github.com/weechat/weechat/issues/2121))
- xfer: fix send of data on the DCC chat buffer after `/upgrade` if the buffer was opened before the upgrade ([#2092](https://github.com/weechat/weechat/issues/2092))
- php: fix return value of function hdata_longlong
+1
View File
@@ -380,6 +380,7 @@ xfer_chat_open_buffer (struct t_xfer *xfer)
weechat_buffer_set (xfer->buffer, "short_name",
xfer->remote_nick);
}
weechat_buffer_set (xfer->buffer, "input_prompt", xfer->local_nick);
weechat_buffer_set (xfer->buffer, "localvar_set_type", "private");
weechat_buffer_set (xfer->buffer, "localvar_set_nick", xfer->local_nick);
weechat_buffer_set (xfer->buffer, "localvar_set_channel", xfer->remote_nick);