Skip to content

Commit 3d5816c

Browse files
committed
🐛 Fix invalid request timeout
The unit of the timeout is milliseconds rather than seconds
1 parent 352daca commit 3d5816c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/guise.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ else
5656
\ 'mode': 'json',
5757
\ 'drop': 'auto',
5858
\ 'noblock': 1,
59-
\ 'timeout': 60 * 60 * 24 * 7,
59+
\ 'timeout': 60 * 60 * 24 * 7 * 1000,
6060
\})
6161
if ch_status(chan) !=# 'open'
6262
echohl WarningMsg

0 commit comments

Comments
 (0)