Fix FugitiveRemoteUrl('origin', FugitiveConfig())

This commit is contained in:
Tim Pope
2021-09-14 00:06:58 -04:00
parent 5be8263f16
commit 5f387d4783

View File

@@ -1273,7 +1273,7 @@ function! fugitive#RemoteUrl(...) abort
if type(a:1) ==# type({}) && has_key(a:1, 'remote_name') && (type(get(args, 0, 0)) !=# type('') || args[0] =~# '^:')
call insert(args, a:1.remote_name)
endif
elseif a:0 > 1 && a:2 !~# '^:'
elseif a:0 > 1 && type(a:2) ==# type({}) || (type(a:2) ==# type('') && a:2 !~# '^:')
let config = fugitive#Config(a:2)
let args = [a:1] + a:000[2:-1]
else