Sparkle icon indicating copy to clipboard operation
Sparkle copied to clipboard

No callback when cancel fetch Appcast

Open colin1994 opened this issue 4 years ago • 0 comments

- (void)appcastDidFinishLoading:(SUAppcast *)ac
{
    if (self.isCanceled)
    {
        [self abortUpdate];
        return;
    }
    [self closeCheckingWindow];
    [super appcastDidFinishLoading:ac];
}

During the fetchAppcastFromURL process, if cancel is clicked, it will abort directly. There is no callback.

We want to get this status, is it feasible? Thank you!

colin1994 avatar Dec 03 '20 03:12 colin1994