diff --git a/desktop/loginlist.c b/desktop/loginlist.c index 639865a7b..ca632c03f 100644 --- a/desktop/loginlist.c +++ b/desktop/loginlist.c @@ -72,6 +72,9 @@ struct login *login_list_get(char *host) { if (host == NULL) return NULL; + if (strncasecmp(host, "http", 4) != 0) + return NULL; + temphost = get_host_from_url(host); temp = xstrdup(host);