Skip to content

Commit

Permalink
bug fix when downloading 0byte file
Browse files Browse the repository at this point in the history
  • Loading branch information
its-a-feature committed Feb 14, 2025
1 parent 9741c7a commit 695948a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.3.1-rc43] - 2025-02-14

### Changed

- Fixed a bug when downloading 0 byte files that would cause a crash when sending eventing notifications

## [3.3.1-rc42] - 2025-02-10

### Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1-rc42
3.3.1-rc43
2 changes: 1 addition & 1 deletion mythic-docker/src/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1-rc42
3.3.1-rc43
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ func handleAgentMessagePostResponse(incoming *map[string]interface{}, uUIDInfo *
EventingChannel <- EventNotification{
Trigger: trigger,
OperationID: file.OperationID,
OperatorID: file.Task.OperatorID,
OperatorID: file.OperatorID,
FileMetaID: file.ID,
}
}(fileMeta)
Expand Down

0 comments on commit 695948a

Please sign in to comment.