Fixed issue where remove connection would be used despite the user not consenting to it.

This commit is contained in:
Michael Starke
2019-07-12 17:07:30 +02:00
parent 024131de35
commit 53b807788a

View File

@@ -95,7 +95,9 @@ NSString *const MPPluginRepositoryDidUpdateAvailablePluginsNotification = @"com.
if(!allowRemoteConnection) {
[self _fetchLocalFallbackRepositoryData:completionHandler];
}
[self _fetchRepositoryDataCompletionHandler:completionHandler];
else {
[self _fetchRepositoryDataCompletionHandler:completionHandler];
}
});
}