From d0b148a97a5d3daf65c074491feee3a50e32727d Mon Sep 17 00:00:00 2001 From: joshaber Date: Wed, 2 Dec 2015 14:39:00 -0500 Subject: [PATCH] Call the better-named method. --- src/git-repository.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git-repository.coffee b/src/git-repository.coffee index 9ff0771b3..30cce92d0 100644 --- a/src/git-repository.coffee +++ b/src/git-repository.coffee @@ -324,7 +324,7 @@ class GitRepository # {::isStatusModified} or {::isStatusNew} to get more information. getPathStatus: (path) -> # Trigger events emitted on the async repo as well - @async.getPathStatus(path) + @async.refreshStatusForPath(path) repo = @getRepo(path) relativePath = @relativize(path)