1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-28 10:38:45 +00:00

Log attempts to open non-URL strings

This commit is contained in:
Dmitry Serov 2019-04-19 15:41:02 +07:00
parent 4331d9f0c7
commit 4d071deead

View file

@ -1273,6 +1273,7 @@ static void removeKeRangerRansomware()
NSURL * url = [NSURL URLWithString: urlString];
if (url == nil)
{
NSLog(@"Detected non-URL string \"%@\". Ignoring.", urlString);
return;
}