@snyk/code-client
Advanced tools
Comparing version 3.5.2 to 3.5.3
@@ -30,3 +30,3 @@ "use strict"; | ||
issues.forEach(issue => { | ||
suggestions[issueId].push({ ...issue, file: file.substring(1) }); | ||
suggestions[issueId].push({ ...issue, file: file.charAt(0) === '/' ? file.substring(1) : file }); | ||
}); | ||
@@ -146,3 +146,3 @@ } | ||
artifactLocation: { | ||
uri: position.file.substring(1), | ||
uri: position.file.charAt(0) === '/' ? position.file.substring(1) : position.file, | ||
uriBaseId: '%SRCROOT%', | ||
@@ -149,0 +149,0 @@ }, |
@@ -76,3 +76,3 @@ { | ||
}, | ||
"version": "3.5.2" | ||
"version": "3.5.3" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
143626