From 82293a08b6363e016fe3929128bef3a60aba487e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 11 Nov 2015 17:53:13 -0800 Subject: [PATCH] Increase the request timeout to 7 seconds to give a bit more time for slow app lists to come in --- Limelight/Network/HttpManager.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Limelight/Network/HttpManager.m b/Limelight/Network/HttpManager.m index da6f20a1..c957e36a 100644 --- a/Limelight/Network/HttpManager.m +++ b/Limelight/Network/HttpManager.m @@ -100,8 +100,8 @@ static const NSString* HTTPS_PORT = @"47984"; NSURL* url = [[NSURL alloc] initWithString:urlString]; NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:url]; if (normalTimeout) { - // Timeout the request after 5 seconds - [request setTimeoutInterval:5]; + // Timeout the request after 7 seconds + [request setTimeoutInterval:7]; } else { // Timeout the request after 60 seconds