diff options
author | Masoud Naservand <masoud.naservand@gmail.com> | 2022-02-17 15:39:05 +0330 |
---|---|---|
committer | Patrick <tingping@tingping.se> | 2022-02-17 10:24:59 -0600 |
commit | 94efa378f7f7329514b04a2f8dadf2b9d57b9f8e (patch) | |
tree | 0a81bb2a5296cef942549dff8c3eaba747e1a993 /plugins/python/python.py | |
parent | ccf6f431bbd96f04369875d72a61976bb6609a69 (diff) |
Reverse the notify.conf linked list before writing
hexchat populates the single linked list `notify_list` defined in `src/common/notify.c` from `notify.conf` file. Each new line read from the file is added to the list by `g_slist_prepend()` which adds it to the front of the list. But in `notify_save()` the list elements are read from the start to end of the list and written to the `notify.conf`. This means everytime hexchat is opened and closed, the contents of `notify.conf` get reversed. This commit creates a temporary glist in `notify_save()` and applies `g_slist_reverse()` on it and writes the contents of this reversed list to `notify.conf`. And solves issue #2680
Diffstat (limited to 'plugins/python/python.py')
0 files changed, 0 insertions, 0 deletions