Skip to content

Commit

Permalink
fix: get error message
Browse files Browse the repository at this point in the history
  • Loading branch information
reitowo committed Nov 19, 2024
1 parent f62a177 commit 7bd578e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/ql-vscode/src/databases/local-databases-ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ export class DatabaseUI extends DisposableObject {
failures.push(entry[0]);
}
} catch (e) {
failures.push(`${entry[0]}: ${toErrorMessag(e)}`);
failures.push(`${entry[0]}: ${getErrorMessage(e)}`);
}
}

Expand Down

0 comments on commit 7bd578e

Please sign in to comment.