Skip to content

Commit

Permalink
Merge pull request #1851 from chrjorgensen/fix/ignore-copy-empty-memb…
Browse files Browse the repository at this point in the history
…er-error

Ignore error copying empty member
  • Loading branch information
sebjulliand authored Feb 21, 2024
2 parents 9f3cfbb + e8b6d22 commit ec399e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/objectBrowser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,8 +551,8 @@ export function initializeObjectBrowser(context: vscode.ExtensionContext) {
noLibList: true
})

const messages = Tools.parseMessages(copyResult.stderr);
if (messages.findId(`CPF2869`)) {
const copyMessages = Tools.parseMessages(copyResult.stderr);
if (copyMessages.messages.length && !copyMessages.findId(`CPF2869`)) {
throw (copyResult.stderr)
}

Expand Down

0 comments on commit ec399e4

Please sign in to comment.