fix trivial typo in cache key format

This commit is contained in:
Richard Frith-Macdonald 2022-10-18 20:04:28 +01:00
parent 726d24bac7
commit 0ca9110ef5

View file

@ -47,7 +47,7 @@
p = [NSNumber numberWithInt: 443];
}
}
k = [NSString stringWithFormat: @"%@::/%@:%@", s, h, p];
k = [NSString stringWithFormat: @"%@://%@:%@", s, h, p];
return k;
}