mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-18 11:40:18 +00:00
Fix issues removing autojoin channels
- Makes remove case insensitive - Fixes crashing when channel not found
This commit is contained in:
@@ -842,7 +842,7 @@ servlist_favchan_find (ircnet *net, char *channel, int *pos)
|
|||||||
while (list)
|
while (list)
|
||||||
{
|
{
|
||||||
favchan = list->data;
|
favchan = list->data;
|
||||||
if (strcmp (favchan->name, channel) == 0)
|
if (g_ascii_strcasecmp (favchan->name, channel) == 0)
|
||||||
{
|
{
|
||||||
if (pos)
|
if (pos)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1088,8 +1088,11 @@ servlist_autojoinedit (ircnet *net, char *channel, gboolean add)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
fav = servlist_favchan_find (net, channel, NULL);
|
fav = servlist_favchan_find (net, channel, NULL);
|
||||||
servlist_favchan_remove (net, fav);
|
if (fav)
|
||||||
servlist_save ();
|
{
|
||||||
|
servlist_favchan_remove (net, fav);
|
||||||
|
servlist_save ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user