TypeError: Cannot read property 'browser_download_url'
See original GitHub issueIssue Description
[coc.nvim] Error on active extension coc-omnisharp: TypeError: Cannot read property 'browser_download_url' of undefined
MacOS Mojave: 10.14.4 dotnet: 2.2.402 nvim: 0.3.4
Any other information?
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
How to fix the TypeError 'Cannot read property 'download ...
There is no this method or property downloads in Browse object, you can check it here on puppeteer docs. you can try using...
Read more >github
To detect an API rate limit error, you can check if its type is *github.RateLimitError: repos, _, err := client.Repositories.
Read more >ERROR TypeError: Cannot read property title of undefined
HEY, SET YOUR LIKE THERE ! ... Your browser can't play this video. ... Solved: ERROR TypeError : Cannot read property title of...
Read more >Cannot read properties of undefined' - JavaScript Debugging
JavaScript Tutorial. How To Fix 'Uncaught TypeError : Cannot read properties of undefined' - JavaScript Debugging. 26K views 6 months ago.
Read more >Cannot read property 'medium' of null" Cant figure it out!
I keep getting a "TypeError: Cannot read property 'medium' of null" particular in my second component that contains an img key from an...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
try 0.0.20 now;
having same problem on windows nvim 0.4.3
update
After poking around a bit I found out that the latest omnisharp-roslyn release has no assets yet and so returns an empty assets array. So the code throws and error since there is no
matched_asset
andbrowser_download_url
. The code is not catching the exception to handle it gracefully. As a result, the existing Omnisharp executable is also not starting and coc.nvim fails to provide code completion.A quick hack I did was to add a
catch(ex) { return; }
for the try block indownloadLanguageServer()
inlangserver.js
file. Now the existing omnisharp is starting.