Skip to content

Commit

Permalink
Handle empty ignore settings
Browse files Browse the repository at this point in the history
Fixes: #299
  • Loading branch information
Jan-Michael Brummer authored and janbrummer committed Jun 6, 2024
1 parent 57abe9b commit 2e344f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/px-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ ignore_domain (GUri *uri,
if (g_strcmp0 (ignore, "*") == 0)
return TRUE;

if (!host)
if (!host || !ignore)
return FALSE;

ignore_split = g_strsplit (ignore, ":", -1);
Expand Down

0 comments on commit 2e344f1

Please sign in to comment.