jetrois / itransmission

Automatically exported from code.google.com/p/itransmission
0 stars 0 forks source link

Download doesn't start with 4.3.3 #15

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Add torrent through either of the three ways
2. Torrent is successfully added
3. Download does not start

What is the expected output? What do you see instead?
With the previous fw I had - 4.0.2 - download started when I pressed 'resume'

What version of the product are you using? On what operating system?
Version 0.5 on iOS 4.3.3 on iPhone 3GS

Please provide any additional information below.

Original issue reported on code.google.com by Mohammad...@gmail.com on 11 Jun 2011 at 7:35

GoogleCodeExporter commented 9 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

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
@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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago

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

GoogleCodeExporter commented 9 years ago
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