Address GitOperationActivity regressions (#824)
This commit is contained in:
parent
fe2595a4cd
commit
43ae4bbdb7
1 changed files with 2 additions and 1 deletions
|
@ -20,6 +20,7 @@ import org.eclipse.jgit.api.PushCommand
|
||||||
import org.eclipse.jgit.api.RebaseResult
|
import org.eclipse.jgit.api.RebaseResult
|
||||||
import org.eclipse.jgit.api.StatusCommand
|
import org.eclipse.jgit.api.StatusCommand
|
||||||
import org.eclipse.jgit.transport.RemoteRefUpdate
|
import org.eclipse.jgit.transport.RemoteRefUpdate
|
||||||
|
import org.eclipse.jgit.transport.SshSessionFactory
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import java.lang.ref.WeakReference
|
import java.lang.ref.WeakReference
|
||||||
|
|
||||||
|
@ -133,7 +134,6 @@ class GitAsyncTask(
|
||||||
operation.onError(rootCauseException(result.err))
|
operation.onError(rootCauseException(result.err))
|
||||||
if (finishWithResultOnEnd != null) {
|
if (finishWithResultOnEnd != null) {
|
||||||
activity?.setResult(Activity.RESULT_CANCELED)
|
activity?.setResult(Activity.RESULT_CANCELED)
|
||||||
activity?.finish()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
is Result.Ok -> {
|
is Result.Ok -> {
|
||||||
|
@ -147,6 +147,7 @@ class GitAsyncTask(
|
||||||
if (refreshListOnEnd) {
|
if (refreshListOnEnd) {
|
||||||
(activity as? PasswordStore)?.resetPasswordList()
|
(activity as? PasswordStore)?.resetPasswordList()
|
||||||
}
|
}
|
||||||
|
SshSessionFactory.setInstance(null)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue