Skip to content

Commit

Permalink
#387 Fix the MISP export invocation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Dec 7, 2017
1 parent 0b82ae5 commit 7516d78
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ui/app/scripts/controllers/case/CaseExportDialogCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

this.caze = caze;
this.mode = '';
this.servers = config.servers; // TODO Nabil
this.servers = config.servers;
this.failures = [];

this.existingExports = {};
Expand Down Expand Up @@ -49,8 +49,8 @@
this.export = function(server) {
self.loading = true;
self.failures = [];

MispSrv.export(self.caze.id, server)
MispSrv.export(self.caze.id, server.name)
.then(function(response){
var success = 0,
failure = 0;
Expand Down
2 changes: 1 addition & 1 deletion ui/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thehive",
"version": "3.0.0",
"version": "3.0.1",
"license": "AGPL-3.0",
"dependencies": {
"angular": "1.5.8",
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thehive",
"version": "3.0.0",
"version": "3.0.1",
"license": "AGPL-3.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "3.0.0"
version in ThisBuild := "3.0.1"

0 comments on commit 7516d78

Please sign in to comment.