Skip to content

Commit

Permalink
fixed issue when removing old bloodhound data
Browse files Browse the repository at this point in the history
  • Loading branch information
dekelpaz committed Jul 12, 2023
1 parent 687c7ad commit 93020fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bluehound",
"productName": "BlueHound",
"version": "1.1.2",
"version": "1.1.3",
"description": "BlueHound",
"neo4jDesktop": {
"apiVersion": "^1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/collectors/BloodHoundUploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ async function dropConstraints(event) {
let result = [];

if (neoVersion.startsWith('4.3') || neoVersion.startsWith('4.4') || neoVersion.split(".", 1)[0] >= 5) {
result = await session.run('SHOW CONSTRAINTS')
result = await session.run('SHOW CONSTRAINTS YIELD name')
} else {
result = await session.run('CALL db.constraints')
}
Expand Down
2 changes: 1 addition & 1 deletion src/modal/AboutModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {applicationGetDebugState} from "../application/ApplicationSelectors";
import JSZip from 'jszip';
import FileSaver from 'file-saver';

const version = "1.1.2";
const version = "1.1.3";

if (window.electron != undefined) {
window.electron.receive("console-messages", (consoleData) => {
Expand Down

0 comments on commit 93020fc

Please sign in to comment.