Fix wrong variable name in fugitive#RemoteUrl()

Resolves: https://github.com/tpope/vim-fugitive/pull/1843
This commit is contained in:
Tim Pope
2021-09-23 04:39:47 -04:00
parent 1352646890
commit 142a0dc0c4

View File

@@ -1360,7 +1360,7 @@ function! fugitive#RemoteUrl(...) abort
break
endif
endfor
if index(args, 1) < 0 && index(args, get(v:, 'true', 1)) < 0 && index(args, ':noresolve') < 0
if index(flags, 1) < 0 && index(flags, get(v:, 'true', 1)) < 0 && index(flags, ':noresolve') < 0
let url = fugitive#ResolveRemote(url)
endif
return url