replace MarkedString with object-type IMarkdownString, #29076

This commit is contained in:
Johannes Rieken
2017-08-23 15:53:21 +02:00
parent f117237ec5
commit 9791d58701
22 changed files with 160 additions and 109 deletions

View File

@@ -204,7 +204,7 @@ class HoverAdapter {
// we wanna know which extension uses command links
// because that is a potential trick-attack on users
if (result.contents.some(containsCommandLink)) {
if (result.contents.some(h => containsCommandLink(h.value))) {
this._telemetryLog('usesCommandLink', { from: 'hover' });
}
return result;