We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 720d593 commit 50a16e9Copy full SHA for 50a16e9
1 file changed
guile/gateway_rename.scm
@@ -29,7 +29,7 @@
29
30
(define *weechat/script-name* "gateway_rename")
31
(define *weechat/script-author* "zv <zv@nxvr.org>")
32
-(define *weechat/script-version* "1.2.1")
+(define *weechat/script-version* "1.2.2")
33
(define *weechat/script-license* "GPL3")
34
(define *weechat/script-description* "Convert usernames of gateway connections their real names")
35
@@ -87,7 +87,9 @@ returned during /version"
87
(cons name network)
88
(process (weechat:infolist_next il))))))
89
90
- (process (weechat:infolist_next il)))
+ (let ((result (process (weechat:infolist_next il))))
91
+ (weechat:infolist_free il)
92
+ result))
93
94
;; This is a table that maps a weechat network 'name' to it's IRC-style hostname
95
(define *hostname-table* (alist->hash-table '(("freenode" . "freenode"))))
0 commit comments