Open GoogleCodeExporter opened 8 years ago
It does. Just takes time to connect to peers. I am currently using it on 4.3.3
and it works fine. But takes time to connect to peers and doesn't run in the
background
Original comment by protyush...@gmail.com
on 11 Jun 2011 at 7:50
[deleted comment]
If the resume button is white, go to preferences to enable the network
interface that iDevice is connected to. Otherwise, it just takes time to
connect to trackers/peers.
Original comment by ccp0...@gmail.com
on 19 Jun 2011 at 1:42
I am having the same issue as above. I let it sit for over half an hour and it
never started.
Original comment by cindy.si...@gmail.com
on 22 Jun 2011 at 7:50
@cindy try pausing and resuming again? With me, it takes about 5 minutes to
start connecting to peers
Original comment by protyush...@gmail.com
on 23 Jun 2011 at 8:04
I uninstalled then reinstalled and it loaded peers in about a minute.
Original comment by Mohammad...@gmail.com
on 23 Jun 2011 at 10:44
Ive also deleted the torrent and readded it, and it has went from never
starting to starting to load peers and connecting instantly sometimes... No
need for unistall and re...
Original comment by machster...@hotmail.com
on 27 Jun 2011 at 6:58
Crashes down on 4.2.1 on iphone 4 nothing is helping
Original comment by alex...@gmail.com
on 29 Jul 2011 at 9:45
[deleted comment]
I have solve this prpblem whit Ipod touch 3 iOS 4.3.3 and it is function
very good
But i have this problem to make a review i have no time no server-space to
host if there is somebody who won to do it i will share
What i have discover about the solution xbrown100kg186cm@gmail.com
Original comment by xbrown10...@gmail.com
on 12 Aug 2011 at 6:05
FIX this problem:
ITNetworkSwitcher.m
in method
- (id)init
{
if ((self = [super init])) {
self.reachabilityHandle = [Reachability reachabilityForInternetConnection];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChangedNotification:) name:kReachabilityChangedNotification object:nil];
[self setEnforcedPolicy:kITDisableTorrentNetworkActivities];
[self.reachabilityHandle performSelector:@selector(startNotifier) withObject:nil afterDelay:0.0f];
self.currentNetworkStatus = [self.reachabilityHandle currentReachabilityStatus];
[self updatePolicyForNetworkStatus:self.currentNetworkStatus];
// [self.reachabilityHandle startNotifier];
}
return self;
}
remove comment at [self.reachabilityHandle startNotifier];
- (id)init
{
if ((self = [super init])) {
self.reachabilityHandle = [Reachability reachabilityForInternetConnection];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChangedNotification:) name:kReachabilityChangedNotification object:nil];
[self setEnforcedPolicy:kITDisableTorrentNetworkActivities];
[self.reachabilityHandle performSelector:@selector(startNotifier) withObject:nil afterDelay:0.0f];
self.currentNetworkStatus = [self.reachabilityHandle currentReachabilityStatus];
[self updatePolicyForNetworkStatus:self.currentNetworkStatus];
[self.reachabilityHandle startNotifier];
}
return self;
}
Original comment by solo...@gmail.com
on 1 Jan 2012 at 10:56
Original issue reported on code.google.com by
Mohammad...@gmail.com
on 11 Jun 2011 at 7:35