Add HTTPS scheme to HTTP source plugin.

This commit is contained in:
Christopher Snowhill 2018-09-23 16:45:03 -07:00
parent be2316163e
commit 7499edd8ca

View file

@ -93,7 +93,7 @@
+ (NSArray *)schemes
{
return [NSArray arrayWithObject:@"http"];
return [NSArray arrayWithObjects:@"http", @"https", nil];
}
@end